From c271766bedfae65554ae137e34fcad643a3c76e2 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Wed, 9 Nov 2011 23:25:34 +0400 Subject: [PATCH] kvm tools: Drop "notsc" no longer needed kernel option "notsc" option has been used to avoid APIC calibration problem at early days when we didn't support APIC at all. Now with KVM APIC emulation used there is no longer need for this option. Drop it. Reported-by: Richard Weinberger Tested-by: Richard Weinberger Signed-off-by: Cyrill Gorcunov Signed-off-by: Pekka Enberg --- builtin-run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin-run.c b/builtin-run.c index 2792650..13025db 100644 --- a/builtin-run.c +++ b/builtin-run.c @@ -830,7 +830,7 @@ int kvm_cmd_run(int argc, const char **argv, const char *prefix) vidmode = 0; memset(real_cmdline, 0, sizeof(real_cmdline)); - strcpy(real_cmdline, "notsc noapic noacpi pci=conf1 reboot=k panic=1 i8042.direct=1 " + strcpy(real_cmdline, "noapic noacpi pci=conf1 reboot=k panic=1 i8042.direct=1 " "i8042.dumbkbd=1 i8042.nopnp=1"); if (vnc || sdl) { strcat(real_cmdline, " video=vesafb console=tty0");