From 5d6a7a069deadf0456f4d7db54d23cbeeba06229 Mon Sep 17 00:00:00 2001 From: Xiao Guangrong Date: Wed, 26 Sep 2012 11:33:22 +1000 Subject: [PATCH] thp: remove unnecessary khugepaged_thread check 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 Cc: Andrea Arcangeli Cc: Hugh Dickins Cc: David Rientjes Signed-off-by: Andrew Morton --- mm/huge_memory.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mm/huge_memory.c b/mm/huge_memory.c index 295f6ceebe05..a0b1dd879f81 100644 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c @@ -2416,11 +2416,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; -- 2.39.5