[PATCH 3/3] x86, perf, uncore: Don't make MSR uncore depend on PCI uncore

From: Andi Kleen
Date: Thu Jun 18 2015 - 16:46:41 EST


From: Andi Kleen <ak@xxxxxxxxxxxxxxx>

Several sytems, such as my laptop, don't expose the PCI devices
for the PCI uncore measurements. But the MSRs for the CBOX and ARB
uncores are always available. Currently the init code doesn't
initialize the MSR uncores when the PCI uncore registration fails.
Stop it from doing that and always try to register the MSR uncores.

This makes the pci uncore exit function unused. We'll need it later
when the uncore becomes modular, so instead of removing it I just
marked it with module_exit right now (which discards it)

v2: Avoid registering notifier when both initialization calls fail
Signed-off-by: Andi Kleen <ak@xxxxxxxxxxxxxxx>
---
arch/x86/kernel/cpu/perf_event_intel_uncore.c | 21 ++++++++-------------
1 file changed, 8 insertions(+), 13 deletions(-)

diff --git a/arch/x86/kernel/cpu/perf_event_intel_uncore.c b/arch/x86/kernel/cpu/perf_event_intel_uncore.c
index b57a09d..cb1428f 100644
--- a/arch/x86/kernel/cpu/perf_event_intel_uncore.c
+++ b/arch/x86/kernel/cpu/perf_event_intel_uncore.c
@@ -952,6 +952,8 @@ static void __init uncore_pci_exit(void)
uncore_types_exit(uncore_pci_uncores);
}
}
+module_exit(uncore_pci_exit);
+/* XXX: need exit code for rest of intel_uncore_init too */

/* CPU hot plug/unplug are serialized by cpu_add_remove_lock mutex */
static LIST_HEAD(boxes_to_free);
@@ -1287,7 +1289,7 @@ static void __init uncore_cpumask_init(void)

static int __init intel_uncore_init(void)
{
- int ret;
+ int ret1, ret2;

if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
return -ENODEV;
@@ -1295,19 +1297,12 @@ static int __init intel_uncore_init(void)
if (cpu_has_hypervisor)
return -ENODEV;

- ret = uncore_pci_init();
- if (ret)
- goto fail;
- ret = uncore_cpu_init();
- if (ret) {
- uncore_pci_exit();
- goto fail;
+ ret1 = uncore_pci_init();
+ ret2 = uncore_cpu_init();
+ if (!ret1 || !ret2) {
+ uncore_cpumask_init();
+ uncore_pmus_register();
}
- uncore_cpumask_init();
-
- uncore_pmus_register();
return 0;
-fail:
- return ret;
}
device_initcall(intel_uncore_init);
--
2.4.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/