From: Cyrill Gorcunov Date: Wed, 9 Nov 2011 19:25:34 +0000 (+0400) Subject: kvm tools: Drop "notsc" no longer needed kernel option X-Git-Tag: next-20111110~2^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8b400fc3304488d4658918fb9cd740575f7428b8;p=karo-tx-linux.git 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 --- diff --git a/tools/kvm/builtin-run.c b/tools/kvm/builtin-run.c index 2792650f5437..13025db32a75 100644 --- a/tools/kvm/builtin-run.c +++ b/tools/kvm/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");