]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - mm/huge_memory.c
mm: Drop unlikely before IS_ERR(_OR_NULL)
[mirror_ubuntu-artful-kernel.git] / mm / huge_memory.c
index c107094f79bae9ee895bd6bf30976d900f16c141..e14652480c597d50ab90d999595750d04c475c6a 100644 (file)
@@ -149,7 +149,7 @@ static int start_stop_khugepaged(void)
                if (!khugepaged_thread)
                        khugepaged_thread = kthread_run(khugepaged, NULL,
                                                        "khugepaged");
-               if (unlikely(IS_ERR(khugepaged_thread))) {
+               if (IS_ERR(khugepaged_thread)) {
                        pr_err("khugepaged: kthread_run(khugepaged) failed\n");
                        err = PTR_ERR(khugepaged_thread);
                        khugepaged_thread = NULL;