Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1583652
| From | Hugh Dickins <hughd@google.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: swap_cluster_info lockdep splat |
| Date | 2017-02-17 19:50 +0100 |
| Message-ID | <tbVLs-7V6-17@gated-at.bofh.it> (permalink) |
| References | (1 earlier) <tbpVg-3Kb-21@gated-at.bofh.it> <tbzBg-2gu-7@gated-at.bofh.it> <tbA4h-2sg-3@gated-at.bofh.it> <tbFQl-63c-9@gated-at.bofh.it> <tbLj4-1dN-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Fri, 17 Feb 2017, Huang, Ying wrote: > > I found a memory leak in __read_swap_cache_async() introduced by mm-swap > series, and confirmed it via testing. Could you verify whether it fixed > your cases? Thanks a lot for reporting. Well caught! That indeed fixes the leak I've been seeing: my load has now passed the 7 hour danger mark, with no indication of slowing down. I'll keep it running until I need to try something else on that machine, but all good for now. You could add Tested-by: Hugh Dickins <hughd@google.com> but don't bother: I'm sure Andrew will simply fold this fix into the fixed patch later on. Thanks, Hugh > > Best Regards, > Huang, Ying > > -------------------------------------------------------------------------> > From 4b96423796ab7435104eb2cb4dcf5d525b9e0800 Mon Sep 17 00:00:00 2001 > From: Huang Ying <ying.huang@intel.com> > Date: Fri, 17 Feb 2017 10:31:37 +0800 > Subject: [PATCH] mm, swap: Fix memory leak in __read_swap_cache_async() > > The memory may be leaked in __read_swap_cache_async(). For the cases > as below, > > CPU 0 CPU 1 > ----- ----- > > find_get_page() == NULL > __swp_swapcount() != 0 > new_page = alloc_page_vma() > radix_tree_maybe_preload() > swap in swap slot > swapcache_prepare() == -EEXIST > cond_resched() > reclaim the swap slot > find_get_page() == NULL > __swp_swapcount() == 0 > return NULL <- new_page leaked here !!! > > The memory leak has been confirmed via checking the value of new_page > when returning inside the loop in __read_swap_cache_async(). > > This is fixed via replacing return with break inside of loop in > __read_swap_cache_async(), so that there is opportunity for the > new_page to be checked and freed. > > Reported-by: Hugh Dickins <hughd@google.com> > Cc: Tim Chen <tim.c.chen@linux.intel.com> > Signed-off-by: "Huang, Ying" <ying.huang@intel.com> > --- > mm/swap_state.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/mm/swap_state.c b/mm/swap_state.c > index 2126e9ba23b2..473b71e052a8 100644 > --- a/mm/swap_state.c > +++ b/mm/swap_state.c > @@ -333,7 +333,7 @@ struct page *__read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask, > * else swap_off will be aborted if we return NULL. > */ > if (!__swp_swapcount(entry) && swap_slot_cache_enabled) > - return NULL; > + break; > > /* > * Get a new page to read into from swap. > -- > 2.11.0 > >
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
swap_cluster_info lockdep splat Minchan Kim <minchan@kernel.org> - 2017-02-16 06:30 +0100
Re: swap_cluster_info lockdep splat "Huang\, Ying" <ying.huang@intel.com> - 2017-02-16 08:20 +0100
Re: swap_cluster_info lockdep splat "Huang\, Ying" <ying.huang@intel.com> - 2017-02-16 09:50 +0100
Re: swap_cluster_info lockdep splat Hugh Dickins <hughd@google.com> - 2017-02-16 20:10 +0100
Re: swap_cluster_info lockdep splat Tim Chen <tim.c.chen@linux.intel.com> - 2017-02-16 20:40 +0100
Re: swap_cluster_info lockdep splat Hugh Dickins <hughd@google.com> - 2017-02-17 02:50 +0100
Re: swap_cluster_info lockdep splat "Huang\, Ying" <ying.huang@intel.com> - 2017-02-17 03:10 +0100
Re: swap_cluster_info lockdep splat "Huang\, Ying" <ying.huang@intel.com> - 2017-02-17 03:40 +0100
Re: swap_cluster_info lockdep splat "Huang\, Ying" <ying.huang@intel.com> - 2017-02-17 08:40 +0100
Re: swap_cluster_info lockdep splat Hugh Dickins <hughd@google.com> - 2017-02-17 19:50 +0100
Re: swap_cluster_info lockdep splat Minchan Kim <minchan@kernel.org> - 2017-02-17 00:50 +0100
Re: swap_cluster_info lockdep splat "Huang\, Ying" <ying.huang@intel.com> - 2017-02-17 01:40 +0100
csiph-web