Skip to content

Commit

Permalink
[PATCH] Clean up numa defines in mmzone.h
Browse files Browse the repository at this point in the history
The recent cleanups to asm-i386/mmzone.h were suboptimal nesting an ifdef of
the same symbol.  This patch removes some of the ifdef'ery to make things more
readable again.

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Dave Jones authored and Linus Torvalds committed Jul 8, 2005
1 parent 3b520b2 commit 8ff8b27
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions include/asm-i386/mmzone.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,15 @@

#include <asm/smp.h>

#if CONFIG_NUMA
#ifdef CONFIG_NUMA
extern struct pglist_data *node_data[];
#define NODE_DATA(nid) (node_data[nid])

#ifdef CONFIG_NUMA
#ifdef CONFIG_X86_NUMAQ
#include <asm/numaq.h>
#else /* summit or generic arch */
#include <asm/srat.h>
#endif
#else /* !CONFIG_NUMA */
#define get_memcfg_numa get_memcfg_numa_flat
#define get_zholes_size(n) (0)
#endif /* CONFIG_NUMA */
#ifdef CONFIG_X86_NUMAQ
#include <asm/numaq.h>
#else /* summit or generic arch */
#include <asm/srat.h>
#endif

extern int get_memcfg_numa_flat(void );
/*
Expand All @@ -42,6 +37,9 @@ static inline void get_memcfg_numa(void)
get_memcfg_numa_flat();
}

#else /* !CONFIG_NUMA */
#define get_memcfg_numa get_memcfg_numa_flat
#define get_zholes_size(n) (0)
#endif /* CONFIG_NUMA */

#ifdef CONFIG_DISCONTIGMEM
Expand Down

0 comments on commit 8ff8b27

Please sign in to comment.