aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mm.h
diff options
context:
space:
mode:
authorAndy Whitcroft <apw@shadowen.org>2006-12-06 23:33:03 -0500
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-07 11:39:23 -0500
commit25ba77c141dbcd2602dd0171824d0d72aa023a01 (patch)
tree153eb9bc567f63d739dcaf8a3caf11c8f48b8379 /include/linux/mm.h
parentbc4ba393c007248f76c05945abb7b7b892cdd1cc (diff)
[PATCH] numa node ids are int, page_to_nid and zone_to_nid should return int
NUMA node ids are passed as either int or unsigned int almost exclusivly page_to_nid and zone_to_nid both return unsigned long. This is a throw back to when page_to_nid was a #define and was thus exposing the real type of the page flags field. In addition to fixing up the definitions of page_to_nid and zone_to_nid I audited the users of these functions identifying the following incorrect uses: 1) mm/page_alloc.c show_node() -- printk dumping the node id, 2) include/asm-ia64/pgalloc.h pgtable_quicklist_free() -- comparison against numa_node_id() which returns an int from cpu_to_node(), and 3) mm/mpolicy.c check_pte_range -- used as an index in node_isset which uses bit_set which in generic code takes an int. Signed-off-by: Andy Whitcroft <apw@shadowen.org> Cc: Christoph Lameter <clameter@engr.sgi.com> Cc: "Luck, Tony" <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r--include/linux/mm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 840303769c11..0e266fe1b4c4 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -456,7 +456,7 @@ static inline int page_zone_id(struct page *page)
456 return (page->flags >> ZONEID_PGSHIFT) & ZONEID_MASK; 456 return (page->flags >> ZONEID_PGSHIFT) & ZONEID_MASK;
457} 457}
458 458
459static inline unsigned long zone_to_nid(struct zone *zone) 459static inline int zone_to_nid(struct zone *zone)
460{ 460{
461#ifdef CONFIG_NUMA 461#ifdef CONFIG_NUMA
462 return zone->node; 462 return zone->node;
@@ -466,9 +466,9 @@ static inline unsigned long zone_to_nid(struct zone *zone)
466} 466}
467 467
468#ifdef NODE_NOT_IN_PAGE_FLAGS 468#ifdef NODE_NOT_IN_PAGE_FLAGS
469extern unsigned long page_to_nid(struct page *page); 469extern int page_to_nid(struct page *page);
470#else 470#else
471static inline unsigned long page_to_nid(struct page *page) 471static inline int page_to_nid(struct page *page)
472{ 472{
473 return (page->flags >> NODES_PGSHIFT) & NODES_MASK; 473 return (page->flags >> NODES_PGSHIFT) & NODES_MASK;
474} 474}