aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/kernel/setup.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c
index 085f2e09b9dc..26524ce3b239 100644
--- a/arch/x86_64/kernel/setup.c
+++ b/arch/x86_64/kernel/setup.c
@@ -728,6 +728,12 @@ static void __cpuinit init_amd(struct cpuinfo_x86 *c)
728 728
729 /* Fix cpuid4 emulation for more */ 729 /* Fix cpuid4 emulation for more */
730 num_cache_leaves = 3; 730 num_cache_leaves = 3;
731
732 /* When there is only one core no need to synchronize RDTSC */
733 if (num_possible_cpus() == 1)
734 set_bit(X86_FEATURE_SYNC_RDTSC, &c->x86_capability);
735 else
736 clear_bit(X86_FEATURE_SYNC_RDTSC, &c->x86_capability);
731} 737}
732 738
733static void __cpuinit detect_ht(struct cpuinfo_x86 *c) 739static void __cpuinit detect_ht(struct cpuinfo_x86 *c)