diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ia64/pgalloc.h | 2 | ||||
-rw-r--r-- | include/linux/mm.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-ia64/pgalloc.h b/include/asm-ia64/pgalloc.h index 9cb68e9b377e..393e04c42a2c 100644 --- a/include/asm-ia64/pgalloc.h +++ b/include/asm-ia64/pgalloc.h | |||
@@ -60,7 +60,7 @@ static inline void *pgtable_quicklist_alloc(void) | |||
60 | static inline void pgtable_quicklist_free(void *pgtable_entry) | 60 | static inline void pgtable_quicklist_free(void *pgtable_entry) |
61 | { | 61 | { |
62 | #ifdef CONFIG_NUMA | 62 | #ifdef CONFIG_NUMA |
63 | unsigned long nid = page_to_nid(virt_to_page(pgtable_entry)); | 63 | int nid = page_to_nid(virt_to_page(pgtable_entry)); |
64 | 64 | ||
65 | if (unlikely(nid != numa_node_id())) { | 65 | if (unlikely(nid != numa_node_id())) { |
66 | free_page((unsigned long)pgtable_entry); | 66 | free_page((unsigned long)pgtable_entry); |
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 | ||
459 | static inline unsigned long zone_to_nid(struct zone *zone) | 459 | static 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 |
469 | extern unsigned long page_to_nid(struct page *page); | 469 | extern int page_to_nid(struct page *page); |
470 | #else | 470 | #else |
471 | static inline unsigned long page_to_nid(struct page *page) | 471 | static 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 | } |