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:
31aaea4
)
oom: use N_MEMORY instead N_HIGH_MEMORY
author
Lai Jiangshan
<
[email protected]
>
Wed, 12 Dec 2012 21:51:28 +0000
(13:51 -0800)
committer
Linus Torvalds
<
[email protected]
>
Thu, 13 Dec 2012 01:38:32 +0000
(17:38 -0800)
N_HIGH_MEMORY stands for the nodes that has normal or high memory.
N_MEMORY stands for the nodes that has any memory.
The code here need to handle with the nodes which have memory, we should
use N_MEMORY instead.
Signed-off-by: Lai Jiangshan <
[email protected]
>
Acked-by: Hillf Danton <
[email protected]
>
Signed-off-by: Wen Congyang <
[email protected]
>
Cc: Christoph Lameter <
[email protected]
>
Cc: Lin Feng <
[email protected]
>
Cc: David Rientjes <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
mm/oom_kill.c
patch
|
blob
|
history
diff --git
a/mm/oom_kill.c
b/mm/oom_kill.c
index 18f1ae2b45de6d45f64cf13b4490b2da62dd2fb5..fe36205a7f8a17c298111bafcaeb39c47afc75ba 100644
(file)
--- a/
mm/oom_kill.c
+++ b/
mm/oom_kill.c
@@
-215,7
+215,7
@@
static enum oom_constraint constrained_alloc(struct zonelist *zonelist,
* the page allocator means a mempolicy is in effect. Cpuset policy
* is enforced in get_page_from_freelist().
*/
- if (nodemask && !nodes_subset(node_states[N_
HIGH_
MEMORY], *nodemask)) {
+ if (nodemask && !nodes_subset(node_states[N_MEMORY], *nodemask)) {
*totalpages = total_swap_pages;
for_each_node_mask(nid, *nodemask)
*totalpages += node_spanned_pages(nid);