Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef3f00a4 authored by Jiri Olsa's avatar Jiri Olsa Committed by Thomas Gleixner
Browse files

perf/x86/intel/uncore: Remove WARN_ON_ONCE in uncore_pci_probe



When booting with nr_cpus=1, uncore_pci_probe tries to init the PCI/uncore
also for the other packages and fails with warning when they are not found.

The warning is bogus because it's correct to fail here for packages which are
not initialized. Remove it and return silently.

Fixes: cf6d445f "perf/x86/uncore: Track packages, not per CPU data"
Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: stable@vger.kernel.org
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent bc231d9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -891,7 +891,7 @@ static int uncore_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id
		return -ENODEV;

	pkg = topology_phys_to_logical_pkg(phys_id);
	if (WARN_ON_ONCE(pkg < 0))
	if (pkg < 0)
		return -EINVAL;

	if (UNCORE_PCI_DEV_TYPE(id->driver_data) == UNCORE_EXTRA_PCI_DEV) {