]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
perf/amd/uncore: Fix pr_fmt() prefix
authorBorislav Petkov <bp@suse.de>
Mon, 10 Apr 2017 12:20:47 +0000 (14:20 +0200)
committerIngo Molnar <mingo@kernel.org>
Tue, 11 Apr 2017 06:44:59 +0000 (08:44 +0200)
Make it "perf/amd/uncore: ", i.e., something more specific than "perf: ".

Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Vince Weaver <vincent.weaver@maine.edu>
Link: http://lkml.kernel.org/r/20170410122047.3026-4-bp@alien8.de
[ Changed it to perf/amd/uncore/ ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/events/amd/uncore.c

index 975f24f6e238e701be9d7858a71669de69b59dee..ad44af0dd6679b50ce2c48bf37b56959b967c3cb 100644 (file)
@@ -30,6 +30,9 @@
 
 #define COUNTER_SHIFT          16
 
+#undef pr_fmt
+#define pr_fmt(fmt)    "amd_uncore: " fmt
+
 static int num_counters_llc;
 static int num_counters_nb;
 
@@ -548,7 +551,7 @@ static int __init amd_uncore_init(void)
                if (ret)
                        goto fail_nb;
 
-               pr_info("perf: AMD NB counters detected\n");
+               pr_info("AMD NB counters detected\n");
                ret = 0;
        }
 
@@ -562,7 +565,7 @@ static int __init amd_uncore_init(void)
                if (ret)
                        goto fail_llc;
 
-               pr_info("perf: AMD LLC counters detected\n");
+               pr_info("AMD LLC counters detected\n");
                ret = 0;
        }