From: Minchan Kim <minchan.kim@gmail.com>
To: Johannes Weiner <hannes@cmpxchg.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
linux-mm <linux-mm@kvack.org>,
LKML <linux-kernel@vger.kernel.org>,
Ben Gamari <bgamari.foss@gmail.com>,
KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
Nick Piggin <npiggin@kernel.dk>, Mel Gorman <mel@csn.ul.ie>,
Wu Fengguang <fengguang.wu@intel.com>
Subject: Re: [PATCH v3 3/3] Prevent activation of page in madvise_dontneed
Date: Wed, 1 Dec 2010 09:50:49 +0900 [thread overview]
Message-ID: <AANLkTi=SPop0yXgVA=gdkgC2TUOp2v3W3_iL4px1OaQR@mail.gmail.com> (raw)
In-Reply-To: <20101130113540.GD15564@cmpxchg.org>
On Tue, Nov 30, 2010 at 8:35 PM, Johannes Weiner <hannes@cmpxchg.org> wrote:
> On Tue, Nov 30, 2010 at 12:23:21AM +0900, Minchan Kim wrote:
>> Now zap_pte_range alwayas activates pages which are pte_young &&
>> !VM_SequentialReadHint(vma). But in case of calling MADV_DONTNEED,
>> it's unnecessary since the page wouldn't use any more.
>>
>> Signed-off-by: Minchan Kim <minchan.kim@gmail.com>
>> Acked-by: Rik van Riel <riel@redhat.com>
>> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
>> Cc: Johannes Weiner <hannes@cmpxchg.org>
>> Cc: Nick Piggin <npiggin@kernel.dk>
>> Cc: Mel Gorman <mel@csn.ul.ie>
>> Cc: Wu Fengguang <fengguang.wu@intel.com>
>>
>> Changelog since v2:
>> - remove unnecessary description
>> Changelog since v1:
>> - change word from promote to activate
>> - add activate argument to zap_pte_range and family function
>>
>> ---
>> include/linux/mm.h | 4 ++--
>> mm/madvise.c | 4 ++--
>> mm/memory.c | 38 +++++++++++++++++++++++---------------
>> mm/mmap.c | 4 ++--
>> 4 files changed, 29 insertions(+), 21 deletions(-)
>>
>> diff --git a/include/linux/mm.h b/include/linux/mm.h
>> index e097df6..6032881 100644
>> --- a/include/linux/mm.h
>> +++ b/include/linux/mm.h
>> @@ -779,11 +779,11 @@ struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr,
>> int zap_vma_ptes(struct vm_area_struct *vma, unsigned long address,
>> unsigned long size);
>> unsigned long zap_page_range(struct vm_area_struct *vma, unsigned long address,
>> - unsigned long size, struct zap_details *);
>> + unsigned long size, struct zap_details *, bool activate);
>
> I would prefer naming the parameter 'ignore_references' or something
> similar, so that it reflects the immediate effect on the zappers'
> behaviour, not what mark_page_accessed() might end up doing.
>
> Other than that, the patch looks good to me.
Fair enough.
Will fix.
Maybe it would take a long time until sending next version.
Thanks, Hannes.
>
> Hannes
>
--
Kind regards,
Minchan Kim
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom policy in Canada: sign http://dissolvethecrtc.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2010-12-01 0:50 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-29 15:23 [PATCH v3 0/3] f/madivse(DONTNEED) support Minchan Kim
2010-11-29 15:23 ` [PATCH v3 1/3] deactivate invalidated pages Minchan Kim
2010-11-30 1:01 ` KOSAKI Motohiro
2010-11-30 5:22 ` Johannes Weiner
2010-11-30 6:18 ` Minchan Kim
2010-11-29 15:23 ` [PATCH 2/3] Reclaim invalidated page ASAP Minchan Kim
2010-11-29 16:57 ` Mel Gorman
2010-11-29 22:41 ` Minchan Kim
2010-11-30 9:16 ` Mel Gorman
2010-11-30 14:04 ` Minchan Kim
2010-11-30 11:20 ` Johannes Weiner
2010-11-30 14:03 ` Minchan Kim
2010-11-30 1:10 ` KOSAKI Motohiro
2010-11-30 9:18 ` Mel Gorman
2010-11-30 14:01 ` Minchan Kim
2010-11-30 14:11 ` Ben Gamari
2010-11-29 15:23 ` [PATCH v3 3/3] Prevent activation of page in madvise_dontneed Minchan Kim
2010-11-30 1:08 ` KOSAKI Motohiro
2010-11-30 11:35 ` Johannes Weiner
2010-12-01 0:50 ` Minchan Kim [this message]
2010-11-30 18:34 ` Hugh Dickins
2010-12-01 0:49 ` Minchan Kim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='AANLkTi=SPop0yXgVA=gdkgC2TUOp2v3W3_iL4px1OaQR@mail.gmail.com' \
--to=minchan.kim@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=bgamari.foss@gmail.com \
--cc=fengguang.wu@intel.com \
--cc=hannes@cmpxchg.org \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mel@csn.ul.ie \
--cc=npiggin@kernel.dk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox