diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-09-27 04:50:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 11:26:12 -0400 |
commit | 08e0f6a9705376732fd3bc9bf8ba97a6b5211eb1 (patch) | |
tree | dfb761013377b983641fae33223157880171c498 /mm/page_alloc.c | |
parent | c72419138fa34e1bc1f1c6fa54ee77df55a05ed0 (diff) |
[PATCH] Add NUMA_BUILD definition in kernel.h to avoid #ifdef CONFIG_NUMA
The NUMA_BUILD constant is always available and will be set to 1 on
NUMA_BUILDs. That way checks valid only under CONFIG_NUMA can easily be done
without #ifdef CONFIG_NUMA
F.e.
if (NUMA_BUILD && <numa_condition>) {
...
}
[akpm: not a thing we'd normally do, but CONFIG_NUMA is special: it is
causing ifdef explosion in core kernel, so let's see if this is a comfortable
way in whcih to control that]
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 8a6418b0d2c5..4c76188b1681 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -942,7 +942,7 @@ get_page_from_freelist(gfp_t gfp_mask, unsigned int order, | |||
942 | */ | 942 | */ |
943 | do { | 943 | do { |
944 | zone = *z; | 944 | zone = *z; |
945 | if (unlikely((gfp_mask & __GFP_THISNODE) && | 945 | if (unlikely(NUMA_BUILD && (gfp_mask & __GFP_THISNODE) && |
946 | zone->zone_pgdat != zonelist->zones[0]->zone_pgdat)) | 946 | zone->zone_pgdat != zonelist->zones[0]->zone_pgdat)) |
947 | break; | 947 | break; |
948 | if ((alloc_flags & ALLOC_CPUSET) && | 948 | if ((alloc_flags & ALLOC_CPUSET) && |
@@ -1256,14 +1256,12 @@ unsigned int nr_free_pagecache_pages(void) | |||
1256 | { | 1256 | { |
1257 | return nr_free_zone_pages(gfp_zone(GFP_HIGHUSER)); | 1257 | return nr_free_zone_pages(gfp_zone(GFP_HIGHUSER)); |
1258 | } | 1258 | } |
1259 | #ifdef CONFIG_NUMA | 1259 | |
1260 | static void show_node(struct zone *zone) | 1260 | static inline void show_node(struct zone *zone) |
1261 | { | 1261 | { |
1262 | printk("Node %ld ", zone_to_nid(zone)); | 1262 | if (NUMA_BUILD) |
1263 | printk("Node %ld ", zone_to_nid(zone)); | ||
1263 | } | 1264 | } |
1264 | #else | ||
1265 | #define show_node(zone) do { } while (0) | ||
1266 | #endif | ||
1267 | 1265 | ||
1268 | void si_meminfo(struct sysinfo *val) | 1266 | void si_meminfo(struct sysinfo *val) |
1269 | { | 1267 | { |