* [PATCH] mm: filemap: clear idle flag for writes
@ 2020-06-24 17:43 Yang Shi
2020-06-24 18:53 ` Andrew Morton
2020-06-24 19:49 ` Shakeel Butt
0 siblings, 2 replies; 6+ messages in thread
From: Yang Shi @ 2020-06-24 17:43 UTC (permalink / raw)
To: hannes, riel, shakeelb, gavin.dg, akpm; +Cc: yang.shi, linux-mm, linux-kernel
Since commit bbddabe2e436aa7869b3ac5248df5c14ddde0cbf ("mm: filemap:
only do access activations on reads"), mark_page_accessed() is called
for reads only. But the idle flag is cleared by mark_page_accessed() so
the idle flag won't get cleared if the page is write accessed only.
Basically idle page tracking is used to estimate workingset size of
workload, noticeable size of workingset might be missed if the idle flag
is not maintained correctly.
It seems good enough to just clear idle flag for write operations.
Fixes: bbddabe2e436 ("mm: filemap: only do access activations on reads")
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Rik van Riel <riel@surriel.com>
Cc: Shakeel Butt <shakeelb@google.com>
Reported-by: Gang Deng <gavin.dg@linux.alibaba.com>
Signed-off-by: Yang Shi <yang.shi@linux.alibaba.com>
---
mm/filemap.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/mm/filemap.c b/mm/filemap.c
index f0ae9a6..0589aef 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -41,6 +41,7 @@
#include <linux/delayacct.h>
#include <linux/psi.h>
#include <linux/ramfs.h>
+#include <linux/page_idle.h>
#include "internal.h"
#define CREATE_TRACE_POINTS
@@ -1630,6 +1631,11 @@ struct page *pagecache_get_page(struct address_space *mapping, pgoff_t index,
if (fgp_flags & FGP_ACCESSED)
mark_page_accessed(page);
+ else if (fgp_flags & FGP_WRITE) {
+ /* Clear idle flag for buffer write */
+ if (page_is_idle(page))
+ clear_page_idle(page);
+ }
no_page:
if (!page && (fgp_flags & FGP_CREAT)) {
--
1.8.3.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] mm: filemap: clear idle flag for writes
2020-06-24 17:43 [PATCH] mm: filemap: clear idle flag for writes Yang Shi
@ 2020-06-24 18:53 ` Andrew Morton
2020-06-24 19:18 ` Yang Shi
2020-06-24 19:49 ` Shakeel Butt
1 sibling, 1 reply; 6+ messages in thread
From: Andrew Morton @ 2020-06-24 18:53 UTC (permalink / raw)
To: Yang Shi; +Cc: hannes, riel, shakeelb, gavin.dg, linux-mm, linux-kernel
On Thu, 25 Jun 2020 01:43:32 +0800 Yang Shi <yang.shi@linux.alibaba.com> wrote:
> Since commit bbddabe2e436aa7869b3ac5248df5c14ddde0cbf ("mm: filemap:
> only do access activations on reads"), mark_page_accessed() is called
> for reads only. But the idle flag is cleared by mark_page_accessed() so
> the idle flag won't get cleared if the page is write accessed only.
>
> Basically idle page tracking is used to estimate workingset size of
> workload, noticeable size of workingset might be missed if the idle flag
> is not maintained correctly.
>
> It seems good enough to just clear idle flag for write operations.
>
> ...
>
> --- a/mm/filemap.c
> +++ b/mm/filemap.c
> @@ -41,6 +41,7 @@
> #include <linux/delayacct.h>
> #include <linux/psi.h>
> #include <linux/ramfs.h>
> +#include <linux/page_idle.h>
> #include "internal.h"
>
> #define CREATE_TRACE_POINTS
> @@ -1630,6 +1631,11 @@ struct page *pagecache_get_page(struct address_space *mapping, pgoff_t index,
>
> if (fgp_flags & FGP_ACCESSED)
> mark_page_accessed(page);
> + else if (fgp_flags & FGP_WRITE) {
> + /* Clear idle flag for buffer write */
> + if (page_is_idle(page))
> + clear_page_idle(page);
> + }
>
> no_page:
> if (!page && (fgp_flags & FGP_CREAT)) {
The kerneldoc comment for pagecache_get_page() could do with some
updating - it fails to mention FGP_WRITE, FGP_NOFS and FGP_NOWAIT.
This change seems correct but also will have runtime effects. What are
they?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] mm: filemap: clear idle flag for writes
2020-06-24 18:53 ` Andrew Morton
@ 2020-06-24 19:18 ` Yang Shi
2020-06-24 19:50 ` Shakeel Butt
0 siblings, 1 reply; 6+ messages in thread
From: Yang Shi @ 2020-06-24 19:18 UTC (permalink / raw)
To: Andrew Morton; +Cc: hannes, riel, shakeelb, gavin.dg, linux-mm, linux-kernel
On 6/24/20 11:53 AM, Andrew Morton wrote:
> On Thu, 25 Jun 2020 01:43:32 +0800 Yang Shi <yang.shi@linux.alibaba.com> wrote:
>
>> Since commit bbddabe2e436aa7869b3ac5248df5c14ddde0cbf ("mm: filemap:
>> only do access activations on reads"), mark_page_accessed() is called
>> for reads only. But the idle flag is cleared by mark_page_accessed() so
>> the idle flag won't get cleared if the page is write accessed only.
>>
>> Basically idle page tracking is used to estimate workingset size of
>> workload, noticeable size of workingset might be missed if the idle flag
>> is not maintained correctly.
>>
>> It seems good enough to just clear idle flag for write operations.
>>
>> ...
>>
>> --- a/mm/filemap.c
>> +++ b/mm/filemap.c
>> @@ -41,6 +41,7 @@
>> #include <linux/delayacct.h>
>> #include <linux/psi.h>
>> #include <linux/ramfs.h>
>> +#include <linux/page_idle.h>
>> #include "internal.h"
>>
>> #define CREATE_TRACE_POINTS
>> @@ -1630,6 +1631,11 @@ struct page *pagecache_get_page(struct address_space *mapping, pgoff_t index,
>>
>> if (fgp_flags & FGP_ACCESSED)
>> mark_page_accessed(page);
>> + else if (fgp_flags & FGP_WRITE) {
>> + /* Clear idle flag for buffer write */
>> + if (page_is_idle(page))
>> + clear_page_idle(page);
>> + }
>>
>> no_page:
>> if (!page && (fgp_flags & FGP_CREAT)) {
> The kerneldoc comment for pagecache_get_page() could do with some
> updating - it fails to mention FGP_WRITE, FGP_NOFS and FGP_NOWAIT.
Yes, will propose a separate patch later on.
>
> This change seems correct but also will have runtime effects. What are
> they?
Other than a couple of extra cycles when idle page tracking is enabled,
I didn't think of other effects. It should be negligible. The idle flag
doesn't play a role in page reclaim algorithm, so it won't have impact
on that.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] mm: filemap: clear idle flag for writes
2020-06-24 17:43 [PATCH] mm: filemap: clear idle flag for writes Yang Shi
2020-06-24 18:53 ` Andrew Morton
@ 2020-06-24 19:49 ` Shakeel Butt
1 sibling, 0 replies; 6+ messages in thread
From: Shakeel Butt @ 2020-06-24 19:49 UTC (permalink / raw)
To: Yang Shi
Cc: Johannes Weiner, Rik van Riel, gavin.dg, Andrew Morton, Linux MM, LKML
On Wed, Jun 24, 2020 at 10:43 AM Yang Shi <yang.shi@linux.alibaba.com> wrote:
>
> Since commit bbddabe2e436aa7869b3ac5248df5c14ddde0cbf ("mm: filemap:
> only do access activations on reads"), mark_page_accessed() is called
> for reads only. But the idle flag is cleared by mark_page_accessed() so
> the idle flag won't get cleared if the page is write accessed only.
>
> Basically idle page tracking is used to estimate workingset size of
> workload, noticeable size of workingset might be missed if the idle flag
> is not maintained correctly.
>
> It seems good enough to just clear idle flag for write operations.
>
> Fixes: bbddabe2e436 ("mm: filemap: only do access activations on reads")
> Cc: Johannes Weiner <hannes@cmpxchg.org>
> Cc: Rik van Riel <riel@surriel.com>
> Cc: Shakeel Butt <shakeelb@google.com>
> Reported-by: Gang Deng <gavin.dg@linux.alibaba.com>
> Signed-off-by: Yang Shi <yang.shi@linux.alibaba.com>
Reviewed-by: Shakeel Butt <shakeelb@google.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] mm: filemap: clear idle flag for writes
2020-06-24 19:18 ` Yang Shi
@ 2020-06-24 19:50 ` Shakeel Butt
2020-06-24 20:24 ` Yang Shi
0 siblings, 1 reply; 6+ messages in thread
From: Shakeel Butt @ 2020-06-24 19:50 UTC (permalink / raw)
To: Yang Shi
Cc: Andrew Morton, Johannes Weiner, Rik van Riel, gavin.dg, Linux MM, LKML
On Wed, Jun 24, 2020 at 12:18 PM Yang Shi <yang.shi@linux.alibaba.com> wrote:
>
>
>
> On 6/24/20 11:53 AM, Andrew Morton wrote:
> > On Thu, 25 Jun 2020 01:43:32 +0800 Yang Shi <yang.shi@linux.alibaba.com> wrote:
> >
> >> Since commit bbddabe2e436aa7869b3ac5248df5c14ddde0cbf ("mm: filemap:
> >> only do access activations on reads"), mark_page_accessed() is called
> >> for reads only. But the idle flag is cleared by mark_page_accessed() so
> >> the idle flag won't get cleared if the page is write accessed only.
> >>
> >> Basically idle page tracking is used to estimate workingset size of
> >> workload, noticeable size of workingset might be missed if the idle flag
> >> is not maintained correctly.
> >>
> >> It seems good enough to just clear idle flag for write operations.
> >>
> >> ...
> >>
> >> --- a/mm/filemap.c
> >> +++ b/mm/filemap.c
> >> @@ -41,6 +41,7 @@
> >> #include <linux/delayacct.h>
> >> #include <linux/psi.h>
> >> #include <linux/ramfs.h>
> >> +#include <linux/page_idle.h>
> >> #include "internal.h"
> >>
> >> #define CREATE_TRACE_POINTS
> >> @@ -1630,6 +1631,11 @@ struct page *pagecache_get_page(struct address_space *mapping, pgoff_t index,
> >>
> >> if (fgp_flags & FGP_ACCESSED)
> >> mark_page_accessed(page);
> >> + else if (fgp_flags & FGP_WRITE) {
> >> + /* Clear idle flag for buffer write */
> >> + if (page_is_idle(page))
> >> + clear_page_idle(page);
> >> + }
> >>
> >> no_page:
> >> if (!page && (fgp_flags & FGP_CREAT)) {
> > The kerneldoc comment for pagecache_get_page() could do with some
> > updating - it fails to mention FGP_WRITE, FGP_NOFS and FGP_NOWAIT.
>
> Yes, will propose a separate patch later on.
>
> >
> > This change seems correct but also will have runtime effects. What are
> > they?
>
> Other than a couple of extra cycles when idle page tracking is enabled,
> I didn't think of other effects. It should be negligible. The idle flag
> doesn't play a role in page reclaim algorithm, so it won't have impact
> on that.
>
>
The only user visible impact will be on idle page tracking users. They
will get more accurate data.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] mm: filemap: clear idle flag for writes
2020-06-24 19:50 ` Shakeel Butt
@ 2020-06-24 20:24 ` Yang Shi
0 siblings, 0 replies; 6+ messages in thread
From: Yang Shi @ 2020-06-24 20:24 UTC (permalink / raw)
To: Shakeel Butt
Cc: Andrew Morton, Johannes Weiner, Rik van Riel, gavin.dg, Linux MM, LKML
On 6/24/20 12:50 PM, Shakeel Butt wrote:
> On Wed, Jun 24, 2020 at 12:18 PM Yang Shi <yang.shi@linux.alibaba.com> wrote:
>>
>>
>> On 6/24/20 11:53 AM, Andrew Morton wrote:
>>> On Thu, 25 Jun 2020 01:43:32 +0800 Yang Shi <yang.shi@linux.alibaba.com> wrote:
>>>
>>>> Since commit bbddabe2e436aa7869b3ac5248df5c14ddde0cbf ("mm: filemap:
>>>> only do access activations on reads"), mark_page_accessed() is called
>>>> for reads only. But the idle flag is cleared by mark_page_accessed() so
>>>> the idle flag won't get cleared if the page is write accessed only.
>>>>
>>>> Basically idle page tracking is used to estimate workingset size of
>>>> workload, noticeable size of workingset might be missed if the idle flag
>>>> is not maintained correctly.
>>>>
>>>> It seems good enough to just clear idle flag for write operations.
>>>>
>>>> ...
>>>>
>>>> --- a/mm/filemap.c
>>>> +++ b/mm/filemap.c
>>>> @@ -41,6 +41,7 @@
>>>> #include <linux/delayacct.h>
>>>> #include <linux/psi.h>
>>>> #include <linux/ramfs.h>
>>>> +#include <linux/page_idle.h>
>>>> #include "internal.h"
>>>>
>>>> #define CREATE_TRACE_POINTS
>>>> @@ -1630,6 +1631,11 @@ struct page *pagecache_get_page(struct address_space *mapping, pgoff_t index,
>>>>
>>>> if (fgp_flags & FGP_ACCESSED)
>>>> mark_page_accessed(page);
>>>> + else if (fgp_flags & FGP_WRITE) {
>>>> + /* Clear idle flag for buffer write */
>>>> + if (page_is_idle(page))
>>>> + clear_page_idle(page);
>>>> + }
>>>>
>>>> no_page:
>>>> if (!page && (fgp_flags & FGP_CREAT)) {
>>> The kerneldoc comment for pagecache_get_page() could do with some
>>> updating - it fails to mention FGP_WRITE, FGP_NOFS and FGP_NOWAIT.
>> Yes, will propose a separate patch later on.
>>
>>> This change seems correct but also will have runtime effects. What are
>>> they?
>> Other than a couple of extra cycles when idle page tracking is enabled,
>> I didn't think of other effects. It should be negligible. The idle flag
>> doesn't play a role in page reclaim algorithm, so it won't have impact
>> on that.
>>
>>
> The only user visible impact will be on idle page tracking users. They
> will get more accurate data.
Thanks for elaborating this.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-06-24 20:24 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-24 17:43 [PATCH] mm: filemap: clear idle flag for writes Yang Shi
2020-06-24 18:53 ` Andrew Morton
2020-06-24 19:18 ` Yang Shi
2020-06-24 19:50 ` Shakeel Butt
2020-06-24 20:24 ` Yang Shi
2020-06-24 19:49 ` Shakeel Butt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox