linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] typeof __page_to_pfn with SPARSEMEM=y
@ 2007-01-26 20:01 Randy Dunlap, Randy Dunlap
  2007-01-26 20:34 ` Andrew Morton
  0 siblings, 1 reply; 2+ messages in thread
From: Randy Dunlap, Randy Dunlap @ 2007-01-26 20:01 UTC (permalink / raw)
  To: linux-mm; +Cc: akpm

With CONFIG_SPARSEMEM=y:

mm/rmap.c:579: warning: format '%lx' expects type 'long unsigned int', but argument 2 has type 'int'

Make __page_to_pfn() return unsigned long.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
 include/asm-generic/memory_model.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-2620-rc6.orig/include/asm-generic/memory_model.h
+++ linux-2620-rc6/include/asm-generic/memory_model.h
@@ -54,7 +54,7 @@
 #define __page_to_pfn(pg)					\
 ({	struct page *__pg = (pg);				\
 	int __sec = page_to_section(__pg);			\
-	__pg - __section_mem_map_addr(__nr_to_section(__sec));	\
+	(unsigned long)(__pg - __section_mem_map_addr(__nr_to_section(__sec)));	\
 })
 
 #define __pfn_to_page(pfn)				\

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-01-26 20:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-26 20:01 [PATCH] typeof __page_to_pfn with SPARSEMEM=y Randy Dunlap, Randy Dunlap
2007-01-26 20:34 ` Andrew Morton

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