diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-01-30 07:30:55 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:30:55 -0500 |
commit | 53756d3722172815f52272b28c6d5d5e9639adde (patch) | |
tree | f376d3378a47c9d442d8444ce7fa78b557bcd8b5 /arch/x86/kernel/vmi_32.c | |
parent | 5548fecdff5617ba3a2f09f0e585e1ac6e1bd25c (diff) |
x86: add set/clear_cpu_cap operations
The patch to suppress bitops-related warnings added a pile of ugly
casts. Many of these were related to the management of x86 CPU
capabilities. Clean these up by adding specific set/clear_cpu_cap
macros, and use them consistently.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/vmi_32.c')
-rw-r--r-- | arch/x86/kernel/vmi_32.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/kernel/vmi_32.c b/arch/x86/kernel/vmi_32.c index aacce426cbd0..87e5633805a9 100644 --- a/arch/x86/kernel/vmi_32.c +++ b/arch/x86/kernel/vmi_32.c | |||
@@ -963,19 +963,19 @@ static int __init parse_vmi(char *arg) | |||
963 | return -EINVAL; | 963 | return -EINVAL; |
964 | 964 | ||
965 | if (!strcmp(arg, "disable_pge")) { | 965 | if (!strcmp(arg, "disable_pge")) { |
966 | clear_bit(X86_FEATURE_PGE, boot_cpu_data.x86_capability); | 966 | clear_cpu_cap(&boot_cpu_data, X86_FEATURE_PGE); |
967 | disable_pge = 1; | 967 | disable_pge = 1; |
968 | } else if (!strcmp(arg, "disable_pse")) { | 968 | } else if (!strcmp(arg, "disable_pse")) { |
969 | clear_bit(X86_FEATURE_PSE, boot_cpu_data.x86_capability); | 969 | clear_cpu_cap(&boot_cpu_data, X86_FEATURE_PSE); |
970 | disable_pse = 1; | 970 | disable_pse = 1; |
971 | } else if (!strcmp(arg, "disable_sep")) { | 971 | } else if (!strcmp(arg, "disable_sep")) { |
972 | clear_bit(X86_FEATURE_SEP, boot_cpu_data.x86_capability); | 972 | clear_cpu_cap(&boot_cpu_data, X86_FEATURE_SEP); |
973 | disable_sep = 1; | 973 | disable_sep = 1; |
974 | } else if (!strcmp(arg, "disable_tsc")) { | 974 | } else if (!strcmp(arg, "disable_tsc")) { |
975 | clear_bit(X86_FEATURE_TSC, boot_cpu_data.x86_capability); | 975 | clear_cpu_cap(&boot_cpu_data, X86_FEATURE_TSC); |
976 | disable_tsc = 1; | 976 | disable_tsc = 1; |
977 | } else if (!strcmp(arg, "disable_mtrr")) { | 977 | } else if (!strcmp(arg, "disable_mtrr")) { |
978 | clear_bit(X86_FEATURE_MTRR, boot_cpu_data.x86_capability); | 978 | clear_cpu_cap(&boot_cpu_data, X86_FEATURE_MTRR); |
979 | disable_mtrr = 1; | 979 | disable_mtrr = 1; |
980 | } else if (!strcmp(arg, "disable_timer")) { | 980 | } else if (!strcmp(arg, "disable_timer")) { |
981 | disable_vmi_timer = 1; | 981 | disable_vmi_timer = 1; |