LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH RFC] mm/swap: make release_pages() and put_pages() match
@ 2019-05-24 19:34 ira.weiny
  2019-05-24 19:44 ` Shakeel Butt
  0 siblings, 1 reply; 3+ messages in thread
From: ira.weiny @ 2019-05-24 19:34 UTC (permalink / raw)
  To: Andrew Morton, Vlastimil Babka, Michal Hocko, Matthew Wilcox
  Cc: linux-mm, linux-kernel, Ira Weiny

From: Ira Weiny <ira.weiny@intel.com>

RFC I have no idea if this is correct or not.  But looking at
release_pages() I see a call to both __ClearPageActive() and
__ClearPageWaiters() while in __page_cache_release() I do not.

Is this a bug which needs to be fixed?  Did I miss clearing active
somewhere else in the call chain of put_page?

This was found via code inspection while determining if release_pages()
and the new put_user_pages() could be interchangeable.

Signed-off-by: Ira Weiny <ira.weiny@intel.com>
---
 mm/swap.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/mm/swap.c b/mm/swap.c
index 3a75722e68a9..9d0432baddb0 100644
--- a/mm/swap.c
+++ b/mm/swap.c
@@ -69,6 +69,7 @@ static void __page_cache_release(struct page *page)
 		del_page_from_lru_list(page, lruvec, page_off_lru(page));
 		spin_unlock_irqrestore(&pgdat->lru_lock, flags);
 	}
+	__ClearPageActive(page);
 	__ClearPageWaiters(page);
 	mem_cgroup_uncharge(page);
 }
-- 
2.20.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH RFC] mm/swap: make release_pages() and put_pages() match
  2019-05-24 19:34 [PATCH RFC] mm/swap: make release_pages() and put_pages() match ira.weiny
@ 2019-05-24 19:44 ` Shakeel Butt
  2019-05-24 20:08   ` Weiny, Ira
  0 siblings, 1 reply; 3+ messages in thread
From: Shakeel Butt @ 2019-05-24 19:44 UTC (permalink / raw)
  To: ira.weiny
  Cc: Andrew Morton, Vlastimil Babka, Michal Hocko, Matthew Wilcox,
	Linux MM, LKML

On Fri, May 24, 2019 at 12:33 PM <ira.weiny@intel.com> wrote:
>
> From: Ira Weiny <ira.weiny@intel.com>
>
> RFC I have no idea if this is correct or not.  But looking at
> release_pages() I see a call to both __ClearPageActive() and
> __ClearPageWaiters() while in __page_cache_release() I do not.
>
> Is this a bug which needs to be fixed?  Did I miss clearing active
> somewhere else in the call chain of put_page?
>
> This was found via code inspection while determining if release_pages()
> and the new put_user_pages() could be interchangeable.
>
> Signed-off-by: Ira Weiny <ira.weiny@intel.com>
> ---
>  mm/swap.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/mm/swap.c b/mm/swap.c
> index 3a75722e68a9..9d0432baddb0 100644
> --- a/mm/swap.c
> +++ b/mm/swap.c
> @@ -69,6 +69,7 @@ static void __page_cache_release(struct page *page)
>                 del_page_from_lru_list(page, lruvec, page_off_lru(page));

see page_off_lru(page) above which clear active bit.

>                 spin_unlock_irqrestore(&pgdat->lru_lock, flags);
>         }
> +       __ClearPageActive(page);
>         __ClearPageWaiters(page);
>         mem_cgroup_uncharge(page);
>  }
> --
> 2.20.1
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH RFC] mm/swap: make release_pages() and put_pages() match
  2019-05-24 19:44 ` Shakeel Butt
@ 2019-05-24 20:08   ` Weiny, Ira
  0 siblings, 0 replies; 3+ messages in thread
From: Weiny, Ira @ 2019-05-24 20:08 UTC (permalink / raw)
  To: Shakeel Butt
  Cc: Andrew Morton, Vlastimil Babka, Michal Hocko, Matthew Wilcox,
	Linux MM, LKML

> 
> On Fri, May 24, 2019 at 12:33 PM <ira.weiny@intel.com> wrote:
> >
> > From: Ira Weiny <ira.weiny@intel.com>
> >
> > RFC I have no idea if this is correct or not.  But looking at
> > release_pages() I see a call to both __ClearPageActive() and
> > __ClearPageWaiters() while in __page_cache_release() I do not.
> >
> > Is this a bug which needs to be fixed?  Did I miss clearing active
> > somewhere else in the call chain of put_page?
> >
> > This was found via code inspection while determining if
> > release_pages() and the new put_user_pages() could be interchangeable.
> >
> > Signed-off-by: Ira Weiny <ira.weiny@intel.com>
> > ---
> >  mm/swap.c | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/mm/swap.c b/mm/swap.c
> > index 3a75722e68a9..9d0432baddb0 100644
> > --- a/mm/swap.c
> > +++ b/mm/swap.c
> > @@ -69,6 +69,7 @@ static void __page_cache_release(struct page *page)
> >                 del_page_from_lru_list(page, lruvec,
> > page_off_lru(page));
> 
> see page_off_lru(page) above which clear active bit.

Thanks,  Sorry for the noise,
Ira


> 
> >                 spin_unlock_irqrestore(&pgdat->lru_lock, flags);
> >         }
> > +       __ClearPageActive(page);
> >         __ClearPageWaiters(page);
> >         mem_cgroup_uncharge(page);
> >  }
> > --
> > 2.20.1
> >

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-05-24 20:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-24 19:34 [PATCH RFC] mm/swap: make release_pages() and put_pages() match ira.weiny
2019-05-24 19:44 ` Shakeel Butt
2019-05-24 20:08   ` Weiny, Ira

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).