From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
To: Nick Piggin <nickpiggin@yahoo.com.au>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
"mel@csn.ul.ie" <mel@csn.ul.ie>,
"apw@shadowen.org" <apw@shadowen.org>,
Andrew Morton <akpm@linux-foundation.org>,
Christoph Lameter <clameter@sgi.com>
Subject: Re: [RFC][PATCH] zone config patch set [1/2] zone ifdef cleaunp by renumbering
Date: Tue, 24 Jul 2007 11:26:59 +0900 [thread overview]
Message-ID: <20070724112659.4b2f6c7c.kamezawa.hiroyu@jp.fujitsu.com> (raw)
In-Reply-To: <46A4574A.8060102@yahoo.com.au>
On Mon, 23 Jul 2007 17:22:50 +1000
Nick Piggin <nickpiggin@yahoo.com.au> wrote:
> > This patch also replaces CONFIG_ZONE_DMA_FLAG by is_configured_zone(ZONE_DMA).
>
> This looks nice to me. It seems like the constant folding will be pretty
> trivial for the compiler to get right -- have you verified this?
>
Yes. I checked to some extent. It seems that the compiler does enough work.
> Could make a comment about all the names of these little functions, but I
> see that you're pretty well just following what's already there, so whoever
> thought those are nice shouldn't have a problem with your patch :)
>
I'll add some comments.
> >
> > Signed-Off-By: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
> >
> > ---
> > include/linux/gfp.h | 16 +++++-------
> > include/linux/mmzone.h | 64 ++++++++++++++++++++++++++-----------------------
> > include/linux/vmstat.h | 24 +++++++++---------
> > mm/Kconfig | 5 ---
> > mm/page-writeback.c | 7 ++---
> > mm/page_alloc.c | 37 ++++++++++++----------------
> > mm/slab.c | 4 +--
> > 7 files changed, 74 insertions(+), 83 deletions(-)
> >
> > Index: linux-2.6.22-rc6-mm1/include/linux/mmzone.h
> > ===================================================================
> > --- linux-2.6.22-rc6-mm1.orig/include/linux/mmzone.h
> > +++ linux-2.6.22-rc6-mm1/include/linux/mmzone.h
> > @@ -178,9 +178,24 @@ enum zone_type {
> > ZONE_HIGHMEM,
> > #endif
> > ZONE_MOVABLE,
> > - MAX_NR_ZONES
> > + MAX_NR_ZONES,
> > +#ifndef CONFIG_ZONE_DMA
> > + ZONE_DMA,
> > +#endif
> > +#ifndef CONFIG_ZONE_DMA32
> > + ZONE_DMA32,
> > +#endif
> > +#ifndef CONFIG_HIGHMEM
> > + ZONE_HIGHMEM,
> > +#endif
> > + MAX_POSSIBLE_ZONES,
> > };
>
> One issue I see here is that MAX_POSSIBLE_ZONES also includes MAX_NR_ZONES
> so I think it will be off-by-one, won't it?
>
Hmm, "MAX_NR_ZONES" wastes one entry in array of MAX_POSSIBLE_ZONES.
But to reduce MAX_POSSIBLE_ZONES by 1, all dummy names, ZONE_DMA-not-configured,
ZONE_HIGHMEM-not-configured etc... should be adjusted.
I think this wasting is not so high cost. MAX_POSSIBLE_ZONES will not be used by
usual codes. I'll add comments about "MAX_POSSIBLE_ZONES includes MAX_NR_ZONES".
,
> > +static char * const zone_names[MAX_POSSIBLE_ZONES] = {
> > + [ZONE_DMA] = "DMA",
> > + [ZONE_DMA32] = "DMA32",
> > + [ZONE_NORMAL] = "Normal",
> > + [ZONE_HIGHMEM] = "HighMem",
> > + [ZONE_MOVABLE] = "Movable",
> > };
>
> Sweet :) I guess the slight increase in size is well worth the nice code!
> However, I think you should be able to just avoid specifying the array
> size explicitly, right?
>
Ah, yes. Then...we remove the enum of MAX_POSSIBLE_ZONES.
>
> > @@ -134,8 +128,8 @@ static unsigned long __meminitdata dma_r
> >
> > static struct node_active_region __meminitdata early_node_map[MAX_ACTIVE_REGIONS];
> > static int __meminitdata nr_nodemap_entries;
> > - static unsigned long __meminitdata arch_zone_lowest_possible_pfn[MAX_NR_ZONES];
> > - static unsigned long __meminitdata arch_zone_highest_possible_pfn[MAX_NR_ZONES];
> > + static unsigned long __meminitdata arch_zone_lowest_possible_pfn[MAX_POSSIBLE_ZONES];
> > + static unsigned long __meminitdata arch_zone_highest_possible_pfn[MAX_POSSIBLE_ZONES];
>
> I don't quite understand why you need to make this change? AFAKS, it is wrong.
> Given that, you might be able to just get rid of MAX_POSSIBLE_ZONES completely?
>
Ok, I'll check again. and will remove MAX_POSSIBLE_ZONES (maybe).
Thanks,
-Kame
--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2007-07-24 2:26 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-21 7:00 KAMEZAWA Hiroyuki
2007-07-21 7:03 ` [RFC][PATCH] zone config patch set [2/2] CONFIG_ZONE_MOVABLE KAMEZAWA Hiroyuki
2007-07-23 7:25 ` Nick Piggin
2007-07-23 13:45 ` Mel Gorman
2007-07-24 1:28 ` KAMEZAWA Hiroyuki
2007-07-23 7:22 ` [RFC][PATCH] zone config patch set [1/2] zone ifdef cleaunp by renumbering Nick Piggin
2007-07-24 2:26 ` KAMEZAWA Hiroyuki [this message]
2007-07-23 13:16 ` Mel Gorman
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=20070724112659.4b2f6c7c.kamezawa.hiroyu@jp.fujitsu.com \
--to=kamezawa.hiroyu@jp.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=apw@shadowen.org \
--cc=clameter@sgi.com \
--cc=linux-mm@kvack.org \
--cc=mel@csn.ul.ie \
--cc=nickpiggin@yahoo.com.au \
/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