svn commit: r222864 - head/sys/x86/x86
Jung-uk Kim
jkim at FreeBSD.org
Wed Jun 8 18:52:42 UTC 2011
Author: jkim
Date: Wed Jun 8 18:52:42 2011
New Revision: 222864
URL: http://svn.freebsd.org/changeset/base/222864
Log:
Remove a redundant assignment since r221703.
Modified:
head/sys/x86/x86/tsc.c
Modified: head/sys/x86/x86/tsc.c
==============================================================================
--- head/sys/x86/x86/tsc.c Wed Jun 8 16:07:44 2011 (r222863)
+++ head/sys/x86/x86/tsc.c Wed Jun 8 18:52:42 2011 (r222864)
@@ -166,9 +166,6 @@ tsc_freq_vmware(void)
tsc_freq = regs[0] | ((uint64_t)regs[1] << 32);
}
tsc_is_invariant = 1;
-#ifdef SMP
- smp_tsc = 1; /* XXX */
-#endif
return (1);
}
More information about the svn-src-all
mailing list