Commit 8d7ff4f2 authored by Robert Richter's avatar Robert Richter Committed by Ingo Molnar

x86/oprofile: rename kernel parameter for architectural perfmon to arch_perfmon

The short name of the achitecture is 'arch_perfmon'. This patch
changes the kernel parameter to use this name.

Cc: Andi Kleen <andi@firstfloor.org>
Signed-off-by: default avatarRobert Richter <robert.richter@amd.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 7afdbf23
...@@ -1728,8 +1728,8 @@ and is between 256 and 4096 characters. It is defined in the file ...@@ -1728,8 +1728,8 @@ and is between 256 and 4096 characters. It is defined in the file
oprofile.cpu_type= Force an oprofile cpu type oprofile.cpu_type= Force an oprofile cpu type
This might be useful if you have an older oprofile This might be useful if you have an older oprofile
userland or if you want common events. userland or if you want common events.
Format: { archperfmon } Format: { arch_perfmon }
archperfmon: [X86] Force use of architectural arch_perfmon: [X86] Force use of architectural
perfmon on Intel CPUs instead of the perfmon on Intel CPUs instead of the
CPU specific event set. CPU specific event set.
......
...@@ -390,7 +390,7 @@ static int __init p4_init(char **cpu_type) ...@@ -390,7 +390,7 @@ static int __init p4_init(char **cpu_type)
static int force_arch_perfmon; static int force_arch_perfmon;
static int force_cpu_type(const char *str, struct kernel_param *kp) static int force_cpu_type(const char *str, struct kernel_param *kp)
{ {
if (!strcmp(str, "archperfmon")) { if (!strcmp(str, "arch_perfmon")) {
force_arch_perfmon = 1; force_arch_perfmon = 1;
printk(KERN_INFO "oprofile: forcing architectural perfmon\n"); printk(KERN_INFO "oprofile: forcing architectural perfmon\n");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment