diff options
author | Takamori Yamaguchi <[email protected]> | 2012-11-08 15:53:39 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2012-11-09 06:41:47 +0100 |
commit | b0a8cc58e6b9aaae3045752059e5e6260c0b94bc (patch) | |
tree | 9c699b9a9bdeeb940b2e96b4cd5325061dd28b02 | |
parent | 848561d368751a1c0f679b9f045a02944506a801 (diff) |
mm: bugfix: set current->reclaim_state to NULL while returning from kswapd()
In kswapd(), set current->reclaim_state to NULL before returning, as
current->reclaim_state holds reference to variable on kswapd()'s stack.
In rare cases, while returning from kswapd() during memory offlining,
__free_slab() and freepages() can access the dangling pointer of
current->reclaim_state.
Signed-off-by: Takamori Yamaguchi <[email protected]>
Signed-off-by: Aaditya Kumar <[email protected]>
Acked-by: David Rientjes <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | mm/vmscan.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c index 2624edcfb420..8b055e9379bc 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -3017,6 +3017,8 @@ static int kswapd(void *p) &balanced_classzone_idx); } } + + current->reclaim_state = NULL; return 0; } |