We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ccd24 commit fcafddeCopy full SHA for fcafdde
arch/x86/kernel/smpboot.c
@@ -660,7 +660,9 @@ wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
660
/*
661
* Give the other CPU some time to accept the IPI.
662
*/
663
- if (init_udelay)
+ if (init_udelay == 0)
664
+ udelay(10);
665
+ else
666
udelay(300);
667
668
pr_debug("Startup point 1\n");
@@ -671,7 +673,9 @@ wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
671
673
672
674
675
676
677
678
679
udelay(200);
680
681
if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
0 commit comments