perf/arm-dsu: Use irq_set_affinity()
authorThomas Gleixner <tglx@linutronix.de>
Tue, 18 May 2021 09:17:30 +0000 (11:17 +0200)
committerWill Deacon <will@kernel.org>
Mon, 24 May 2021 10:02:00 +0000 (11:02 +0100)
commit41ea281724c097e15aca1a8522abbfa54a60acde
tree3d33f5d249b1f2fdbee66e0df91fd10ffe12dfd8
parent1ceeb8d430f5ea780b8f7d02466a7454cc845528
perf/arm-dsu: Use irq_set_affinity()

The driver uses irq_set_affinity_hint() to set the affinity for the PMU
interrupts, which relies on the undocumented side effect that this function
actually sets the affinity under the hood.

Setting an hint is clearly not a guarantee and for these PMU interrupts an
affinity hint, which is supposed to guide userspace for setting affinity,
is beyond pointless, because the affinity of these interrupts cannot be
modified from user space.

Aside of that the error checks are bogus because the only error which is
returned from irq_set_affinity_hint() is when there is no irq descriptor
for the interrupt number, but not when the affinity set fails. That's on
purpose because the hint can point to an offline CPU.

Replace the mindless abuse with irq_set_affinity().

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Will Deacon <will@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: linux-arm-kernel@lists.infradead.org
Acked-by: Mark Rutland <mark.rutland@arm.com>
Link: https://lore.kernel.org/r/20210518093118.505110632@linutronix.de
Signed-off-by: Will Deacon <will@kernel.org>
drivers/perf/arm_dsu_pmu.c