]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
thp: remove unnecessary khugepaged_thread check
authorXiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Fri, 28 Sep 2012 00:19:16 +0000 (10:19 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 5 Oct 2012 04:00:51 +0000 (14:00 +1000)
Now, khugepaged creation and cancel are completely serial under the
protection of khugepaged_mutex, it is impossible that many khugepaged
entities are running

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 e08305d1ac865b5b9b91a7ee9c5987f9312c134c..890bc29dd0783a5910527f3c881478c5c299f0e3 100644 (file)
@@ -2397,11 +2397,8 @@ static int khugepaged(void *none)
        set_freezable();
        set_user_nice(current, 19);
 
-       while (!kthread_should_stop()) {
-               VM_BUG_ON(khugepaged_thread != current);
+       while (!kthread_should_stop())
                khugepaged_loop();
-               VM_BUG_ON(khugepaged_thread != current);
-       }
 
        spin_lock(&khugepaged_mm_lock);
        mm_slot = khugepaged_scan.mm_slot;