]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
thp: remove unnecessary check in start_khugepaged
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>
Wed, 3 Oct 2012 06:46:47 +0000 (16:46 +1000)
The check is unnecessary since if mm_slot_cache or mm_slots_hash
initialize failed, no sysfs interface will be created

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 13a1ff52c42a988db63175d14e8c1bd7095b86e5..2db4aef80f9dddc2e3553eb840b6d7b138004438 100644 (file)
@@ -141,10 +141,7 @@ static int start_khugepaged(void)
        int err = 0;
        if (khugepaged_enabled()) {
                int wakeup;
-               if (unlikely(!mm_slot_cache || !mm_slots_hash)) {
-                       err = -ENOMEM;
-                       goto out;
-               }
+
                mutex_lock(&khugepaged_mutex);
                if (!khugepaged_thread)
                        khugepaged_thread = kthread_run(khugepaged, NULL,
@@ -164,7 +161,7 @@ static int start_khugepaged(void)
        } else
                /* wakeup to exit */
                wake_up_interruptible(&khugepaged_wait);
-out:
+
        return err;
 }