From bb830eceaa88ee5ee1b0086819e8fbe894bdda4c Mon Sep 17 00:00:00 2001 From: Jun Kuriyama Date: Thu, 12 Nov 2009 03:31:19 +0000 Subject: [PATCH] - Style nits. - Remove unneeded TUNABLE_INT(). Suggested by: avg, kib --- sys/amd64/amd64/initcpu.c | 4 +--- sys/i386/i386/initcpu.c | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/sys/amd64/amd64/initcpu.c b/sys/amd64/amd64/initcpu.c index 0753306282d..19b784cc83c 100644 --- a/sys/amd64/amd64/initcpu.c +++ b/sys/amd64/amd64/initcpu.c @@ -53,7 +53,6 @@ SYSCTL_INT(_hw, OID_AUTO, instruction_sse, CTLFLAG_RD, * 1: force disable CLFLUSH */ static int hw_clflush_disable = -1; -TUNABLE_INT("hw.clflush_disable", &hw_clflush_disable); int cpu; /* Are we 386, 386sx, 486, etc? */ u_int cpu_feature; /* Feature flags */ @@ -185,7 +184,6 @@ initializecpu(void) * hw.clflush_disable tunable. This may help Xen guest on some AMD * CPUs. */ - if (hw_clflush_disable == 1) { + if (hw_clflush_disable == 1) cpu_feature &= ~CPUID_CLFSH; - } } diff --git a/sys/i386/i386/initcpu.c b/sys/i386/i386/initcpu.c index bcd9922b089..dad79197ec0 100644 --- a/sys/i386/i386/initcpu.c +++ b/sys/i386/i386/initcpu.c @@ -81,7 +81,6 @@ SYSCTL_INT(_hw, OID_AUTO, instruction_sse, CTLFLAG_RD, * 1: force disable CLFLUSH */ static int hw_clflush_disable = -1; -TUNABLE_INT("hw.clflush_disable", &hw_clflush_disable); /* Must *NOT* be BSS or locore will bzero these after setting them */ int cpu = 0; /* Are we 386, 386sx, 486, etc? */ @@ -737,9 +736,8 @@ initializecpu(void) * hw.clflush_disable tunable. This may help Xen guest on some AMD * CPUs. */ - if (hw_clflush_disable == 1) { + if (hw_clflush_disable == 1) cpu_feature &= ~CPUID_CLFSH; - } #if defined(PC98) && !defined(CPU_UPGRADE_HW_CACHE) /*