public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] MAX_NR_NODES name change
@ 2002-08-01  0:12 Matthew Dobson
  0 siblings, 0 replies; only message in thread
From: Matthew Dobson @ 2002-08-01  0:12 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 226 bytes --]

This patch changes MAX_NR_NODES to be NR_NODES, so as to be more consistent 
with the naming of NR_CPUS.  It is easier to change this one as it only appears 
in 3 places and NR_CPUS appears all over the place.

Cheers!

-Matt

[-- Attachment #2: max_nr_node-fix.patch --]
[-- Type: text/plain, Size: 1181 bytes --]

diff -Nur linux-2.5.29-vanilla/include/linux/mmzone.h linux-2.5.29-patched/include/linux/mmzone.h
--- linux-2.5.29-vanilla/include/linux/mmzone.h	Fri Jul 26 19:58:25 2002
+++ linux-2.5.29-patched/include/linux/mmzone.h	Wed Jul 31 17:09:20 2002
@@ -167,14 +167,14 @@
 
 #define NODE_DATA(nid)		(&contig_page_data)
 #define NODE_MEM_MAP(nid)	mem_map
-#define MAX_NR_NODES		1
+#define NR_NODES		1
 
 #else /* !CONFIG_DISCONTIGMEM */
 
 #include <asm/mmzone.h>
 
 /* page->zone is currently 8 bits ... */
-#define MAX_NR_NODES		(255 / MAX_NR_ZONES)
+#define NR_NODES		(255 / MAX_NR_ZONES)
 
 #endif /* !CONFIG_DISCONTIGMEM */
 
diff -Nur linux-2.5.29-vanilla/mm/page_alloc.c linux-2.5.29-patched/mm/page_alloc.c
--- linux-2.5.29-vanilla/mm/page_alloc.c	Fri Jul 26 19:58:27 2002
+++ linux-2.5.29-patched/mm/page_alloc.c	Wed Jul 31 17:09:00 2002
@@ -34,7 +34,7 @@
  * Used by page_zone() to look up the address of the struct zone whose
  * id is encoded in the upper bits of page->flags
  */
-zone_t *zone_table[MAX_NR_ZONES*MAX_NR_NODES];
+zone_t *zone_table[MAX_NR_ZONES*NR_NODES];
 EXPORT_SYMBOL(zone_table);
 
 static char *zone_names[MAX_NR_ZONES] = { "DMA", "Normal", "HighMem" };

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-08-01  0:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-01  0:12 [patch] MAX_NR_NODES name change Matthew Dobson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox