]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
thp: remove unnecessary check in start_khugepaged
authorXiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Wed, 26 Sep 2012 01:33:21 +0000 (11:33 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 27 Sep 2012 07:25:53 +0000 (17:25 +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 d4b257197bb7d6b4629f918ebc75cda1101ebdfc..f24bc65217798366d2eb1c2e912eef136af03fd9 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;
 }