diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-11-09 06:53:02 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-11-09 06:53:02 +0100 |
commit | ce6d841e9c0e177a594615dc0e69dd04972a696c (patch) | |
tree | 61c24c2dcd481502fdc0250407918469b5298a61 /mm | |
parent | Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux (diff) | |
parent | h8300: add missing L1_CACHE_SHIFT (diff) | |
download | linux-ce6d841e9c0e177a594615dc0e69dd04972a696c.tar.xz linux-ce6d841e9c0e177a594615dc0e69dd04972a696c.zip |
Merge branch 'akpm' (Fixes from Andrew)
Merge misc fixes from Andrew Morton:
"Five fixes"
* emailed patches from Andrew Morton <akpm@linux-foundation.org>: (5 patches)
h8300: add missing L1_CACHE_SHIFT
mm: bugfix: set current->reclaim_state to NULL while returning from kswapd()
fanotify: fix missing break
revert "epoll: support for disabling items, and a self-test app"
checkpatch: improve network block comment style checking
Diffstat (limited to 'mm')
-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; } |