projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5106d9
)
x86: notsc is ignored on common configurations
author
Pavel Machek
<pavel@ucw.cz>
Tue, 19 Feb 2008 10:02:30 +0000
(11:02 +0100)
committer
Ingo Molnar
<mingo@elte.hu>
Tue, 26 Feb 2008 11:55:54 +0000
(12:55 +0100)
notsc is ignored in 32-bit kernels if CONFIG_X86_TSC is on.. which is
bad, fix it.
Signed-off-by: Pavel Machek <pavel@suse.cz>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/tsc_32.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/tsc_32.c
b/arch/x86/kernel/tsc_32.c
index 43517e324be83e73096fe28a39ec5275c9a378e0..f14cfd9d1f94c1a634833da25e86eea9cb43b864 100644
(file)
--- a/
arch/x86/kernel/tsc_32.c
+++ b/
arch/x86/kernel/tsc_32.c
@@
-28,7
+28,8
@@
EXPORT_SYMBOL_GPL(tsc_khz);
static int __init tsc_setup(char *str)
{
printk(KERN_WARNING "notsc: Kernel compiled with CONFIG_X86_TSC, "
- "cannot disable TSC.\n");
+ "cannot disable TSC completely.\n");
+ mark_tsc_unstable("user disabled TSC");
return 1;
}
#else