projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1895418
)
mm: introduce helper function set_max_mapnr()
author
Jiang Liu
<
[email protected]
>
Wed, 3 Jul 2013 22:04:23 +0000
(15:04 -0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 3 Jul 2013 23:07:38 +0000
(16:07 -0700)
Introduce a helper function set_max_mapnr() to set global variable
max_mapnr.
Also unify condition compilation for max_mapnr with
CONFIG_NEED_MULTIPLE_NODES instead of CONFIG_DISCONTIGMEM.
Signed-off-by: Jiang Liu <
[email protected]
>
Cc: Greg Kroah-Hartman <
[email protected]
>
Cc: Mauro Carvalho Chehab <
[email protected]
>
Cc: "David S. Miller" <
[email protected]
>
Cc: Mark Brown <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
include/linux/mm.h
patch
|
blob
|
history
diff --git
a/include/linux/mm.h
b/include/linux/mm.h
index e550a1773a9e55941442b0dae98f7a647f01899b..b87681adf0bada78cec851382c7719a1c5e66945 100644
(file)
--- a/
include/linux/mm.h
+++ b/
include/linux/mm.h
@@
-25,8
+25,15
@@
struct file_ra_state;
struct user_struct;
struct writeback_control;
-#ifndef CONFIG_
DISCONTIGMEM
/* Don't use mapnrs, do it properly */
+#ifndef CONFIG_
NEED_MULTIPLE_NODES
/* Don't use mapnrs, do it properly */
extern unsigned long max_mapnr;
+
+static inline void set_max_mapnr(unsigned long limit)
+{
+ max_mapnr = limit;
+}
+#else
+static inline void set_max_mapnr(unsigned long limit) { }
#endif
extern unsigned long totalram_pages;