diff options
Diffstat (limited to 'arch/x86/kernel/setup_64.c')
-rw-r--r-- | arch/x86/kernel/setup_64.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c index cb9b8a90c09..79635b7bd57 100644 --- a/arch/x86/kernel/setup_64.c +++ b/arch/x86/kernel/setup_64.c | |||
@@ -1050,6 +1050,17 @@ void __cpuinit print_cpu_info(struct cpuinfo_x86 *c) | |||
1050 | printk(KERN_CONT "\n"); | 1050 | printk(KERN_CONT "\n"); |
1051 | } | 1051 | } |
1052 | 1052 | ||
1053 | static __init int setup_disablecpuid(char *arg) | ||
1054 | { | ||
1055 | int bit; | ||
1056 | if (get_option(&arg, &bit) && bit < NCAPINTS*32) | ||
1057 | setup_clear_cpu_cap(bit); | ||
1058 | else | ||
1059 | return 0; | ||
1060 | return 1; | ||
1061 | } | ||
1062 | __setup("clearcpuid=", setup_disablecpuid); | ||
1063 | |||
1053 | /* | 1064 | /* |
1054 | * Get CPU information for use by the procfs. | 1065 | * Get CPU information for use by the procfs. |
1055 | */ | 1066 | */ |