From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754799Ab0KRLoV (ORCPT ); Thu, 18 Nov 2010 06:44:21 -0500 Received: from gir.skynet.ie ([193.1.99.77]:44379 "EHLO gir.skynet.ie" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750854Ab0KRLoU (ORCPT ); Thu, 18 Nov 2010 06:44:20 -0500 Date: Thu, 18 Nov 2010 11:44:04 +0000 From: Mel Gorman To: Andrea Arcangeli Cc: linux-mm@kvack.org, Linus Torvalds , Andrew Morton , linux-kernel@vger.kernel.org, Marcelo Tosatti , Adam Litke , Avi Kivity , Hugh Dickins , Rik van Riel , Dave Hansen , Benjamin Herrenschmidt , Ingo Molnar , Mike Travis , KAMEZAWA Hiroyuki , Christoph Lameter , Chris Wright , bpicco@redhat.com, KOSAKI Motohiro , Balbir Singh , "Michael S. Tsirkin" , Peter Zijlstra , Johannes Weiner , Daisuke Nishimura , Chris Mason , Borislav Petkov Subject: Re: [PATCH 04 of 66] define MADV_HUGEPAGE Message-ID: <20101118114404.GI8135@csn.ul.ie> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On just the subject, I've been hassled before to add information to the subject on what is being affected. In this case, it would be just mm: because you are not affecting any subsystem but others might be mm: migration: something something On a practical point of view, it means if you sort mmotm's series file, you can get an approximate breakdown of how many patches affect each subsystem. No idea if it's required or not but don't be surprised if someone complains :) On Wed, Nov 03, 2010 at 04:27:39PM +0100, Andrea Arcangeli wrote: > From: Andrea Arcangeli > > Define MADV_HUGEPAGE. > > Signed-off-by: Andrea Arcangeli > Acked-by: Rik van Riel > Acked-by: Arnd Bergmann Otherwise; Acked-by: Mel Gorman > --- > > diff --git a/arch/alpha/include/asm/mman.h b/arch/alpha/include/asm/mman.h > --- a/arch/alpha/include/asm/mman.h > +++ b/arch/alpha/include/asm/mman.h > @@ -53,6 +53,8 @@ > #define MADV_MERGEABLE 12 /* KSM may merge identical pages */ > #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ > > +#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > > diff --git a/arch/mips/include/asm/mman.h b/arch/mips/include/asm/mman.h > --- a/arch/mips/include/asm/mman.h > +++ b/arch/mips/include/asm/mman.h > @@ -77,6 +77,8 @@ > #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ > #define MADV_HWPOISON 100 /* poison a page for testing */ > > +#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > > diff --git a/arch/parisc/include/asm/mman.h b/arch/parisc/include/asm/mman.h > --- a/arch/parisc/include/asm/mman.h > +++ b/arch/parisc/include/asm/mman.h > @@ -59,6 +59,8 @@ > #define MADV_MERGEABLE 65 /* KSM may merge identical pages */ > #define MADV_UNMERGEABLE 66 /* KSM may not merge identical pages */ > > +#define MADV_HUGEPAGE 67 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > #define MAP_VARIABLE 0 > diff --git a/arch/xtensa/include/asm/mman.h b/arch/xtensa/include/asm/mman.h > --- a/arch/xtensa/include/asm/mman.h > +++ b/arch/xtensa/include/asm/mman.h > @@ -83,6 +83,8 @@ > #define MADV_MERGEABLE 12 /* KSM may merge identical pages */ > #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ > > +#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > > diff --git a/include/asm-generic/mman-common.h b/include/asm-generic/mman-common.h > --- a/include/asm-generic/mman-common.h > +++ b/include/asm-generic/mman-common.h > @@ -45,6 +45,8 @@ > #define MADV_MERGEABLE 12 /* KSM may merge identical pages */ > #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ > > +#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > > -- Mel Gorman Part-time Phd Student Linux Technology Center University of Limerick IBM Dublin Software Lab From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail202.messagelabs.com (mail202.messagelabs.com [216.82.254.227]) by kanga.kvack.org (Postfix) with ESMTP id C99256B0087 for ; Thu, 18 Nov 2010 06:44:20 -0500 (EST) Date: Thu, 18 Nov 2010 11:44:04 +0000 From: Mel Gorman Subject: Re: [PATCH 04 of 66] define MADV_HUGEPAGE Message-ID: <20101118114404.GI8135@csn.ul.ie> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org To: Andrea Arcangeli Cc: linux-mm@kvack.org, Linus Torvalds , Andrew Morton , linux-kernel@vger.kernel.org, Marcelo Tosatti , Adam Litke , Avi Kivity , Hugh Dickins , Rik van Riel , Dave Hansen , Benjamin Herrenschmidt , Ingo Molnar , Mike Travis , KAMEZAWA Hiroyuki , Christoph Lameter , Chris Wright , bpicco@redhat.com, KOSAKI Motohiro , Balbir Singh , "Michael S. Tsirkin" , Peter Zijlstra , Johannes Weiner , Daisuke Nishimura , Chris Mason , Borislav Petkov List-ID: On just the subject, I've been hassled before to add information to the subject on what is being affected. In this case, it would be just mm: because you are not affecting any subsystem but others might be mm: migration: something something On a practical point of view, it means if you sort mmotm's series file, you can get an approximate breakdown of how many patches affect each subsystem. No idea if it's required or not but don't be surprised if someone complains :) On Wed, Nov 03, 2010 at 04:27:39PM +0100, Andrea Arcangeli wrote: > From: Andrea Arcangeli > > Define MADV_HUGEPAGE. > > Signed-off-by: Andrea Arcangeli > Acked-by: Rik van Riel > Acked-by: Arnd Bergmann Otherwise; Acked-by: Mel Gorman > --- > > diff --git a/arch/alpha/include/asm/mman.h b/arch/alpha/include/asm/mman.h > --- a/arch/alpha/include/asm/mman.h > +++ b/arch/alpha/include/asm/mman.h > @@ -53,6 +53,8 @@ > #define MADV_MERGEABLE 12 /* KSM may merge identical pages */ > #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ > > +#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > > diff --git a/arch/mips/include/asm/mman.h b/arch/mips/include/asm/mman.h > --- a/arch/mips/include/asm/mman.h > +++ b/arch/mips/include/asm/mman.h > @@ -77,6 +77,8 @@ > #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ > #define MADV_HWPOISON 100 /* poison a page for testing */ > > +#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > > diff --git a/arch/parisc/include/asm/mman.h b/arch/parisc/include/asm/mman.h > --- a/arch/parisc/include/asm/mman.h > +++ b/arch/parisc/include/asm/mman.h > @@ -59,6 +59,8 @@ > #define MADV_MERGEABLE 65 /* KSM may merge identical pages */ > #define MADV_UNMERGEABLE 66 /* KSM may not merge identical pages */ > > +#define MADV_HUGEPAGE 67 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > #define MAP_VARIABLE 0 > diff --git a/arch/xtensa/include/asm/mman.h b/arch/xtensa/include/asm/mman.h > --- a/arch/xtensa/include/asm/mman.h > +++ b/arch/xtensa/include/asm/mman.h > @@ -83,6 +83,8 @@ > #define MADV_MERGEABLE 12 /* KSM may merge identical pages */ > #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ > > +#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > > diff --git a/include/asm-generic/mman-common.h b/include/asm-generic/mman-common.h > --- a/include/asm-generic/mman-common.h > +++ b/include/asm-generic/mman-common.h > @@ -45,6 +45,8 @@ > #define MADV_MERGEABLE 12 /* KSM may merge identical pages */ > #define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */ > > +#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */ > + > /* compatibility flags */ > #define MAP_FILE 0 > > -- Mel Gorman Part-time Phd Student Linux Technology Center University of Limerick IBM Dublin Software Lab -- 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: email@kvack.org