linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MM: Fix NR_SECTION_ROOTS == 0 when using using sparsemem extreme.
@ 2010-05-05 21:02 Marcelo Roberto Jimenez
  2010-05-05 22:19 ` Marcelo Jimenez
  0 siblings, 1 reply; 3+ messages in thread
From: Marcelo Roberto Jimenez @ 2010-05-05 21:02 UTC (permalink / raw)
  To: mroberto, Andrew Morton, KOSAKI Motohiro, Christoph Lameter,
	Mel Gorman, Minchan Kim, Russell King - ARM Linux,
	Stephen Rothwell, H. Peter Anvin, Yinghai Lu, Sergei Shtylyov
  Cc: linux-kernel, linux-mm

Got this while compiling for ARM/SA1100:

mm/sparse.c: In function '__section_nr':
mm/sparse.c:135: warning: 'root' is used uninitialized in this function

This patch follows Russell King's suggestion for a new calculation for
NR_SECTION_ROOTS. Thanks also to Sergei Shtylyov for pointing out the
existence of the macro DIV_ROUND_UP.

Signed-off-by: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br>
---
 include/linux/mmzone.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
index cf9e458..e90ad64 100644
--- a/include/linux/mmzone.h
+++ b/include/linux/mmzone.h
@@ -972,7 +972,7 @@ struct mem_section {
 #endif
 
 #define SECTION_NR_TO_ROOT(sec)	((sec) / SECTIONS_PER_ROOT)
-#define NR_SECTION_ROOTS	(NR_MEM_SECTIONS / SECTIONS_PER_ROOT)
+#define NR_SECTION_ROOTS	DIV_ROUND_UP(NR_MEM_SECTIONS, SECTIONS_PER_ROOT)
 #define SECTION_ROOT_MASK	(SECTIONS_PER_ROOT - 1)
 
 #ifdef CONFIG_SPARSEMEM_EXTREME
-- 
1.7.1

--
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 related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-05-19 16:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-05 21:02 [PATCH] MM: Fix NR_SECTION_ROOTS == 0 when using using sparsemem extreme Marcelo Roberto Jimenez
2010-05-05 22:19 ` Marcelo Jimenez
2010-05-19 16:14   ` Atsushi Nemoto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).