]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
thp: remove khugepaged_loop
authorXiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Fri, 28 Sep 2012 00:19:18 +0000 (10:19 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 4 Oct 2012 05:03:16 +0000 (15:03 +1000)
Merge khugepaged_loop into khugepaged

Signed-off-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Cc: Andrea Arcangeli <aarcange@redhat.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/huge_memory.c

index e88563671fe8f904e8de0edb85bcd53928c64341..34fbda8803f65923685553b063bd2508a1289284 100644 (file)
@@ -2405,14 +2405,6 @@ static void khugepaged_wait_work(void)
                wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
 }
 
-static void khugepaged_loop(void)
-{
-       while (likely(khugepaged_enabled())) {
-               khugepaged_do_scan();
-               khugepaged_wait_work();
-       }
-}
-
 static int khugepaged(void *none)
 {
        struct mm_slot *mm_slot;
@@ -2420,8 +2412,10 @@ static int khugepaged(void *none)
        set_freezable();
        set_user_nice(current, 19);
 
-       while (!kthread_should_stop())
-               khugepaged_loop();
+       while (!kthread_should_stop()) {
+               khugepaged_do_scan();
+               khugepaged_wait_work();
+       }
 
        spin_lock(&khugepaged_mm_lock);
        mm_slot = khugepaged_scan.mm_slot;