Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Perf: arm-cmn: Allow irq to be shared.
Browse files Browse the repository at this point in the history
Multiple sockets can share a same pmu interrupts.

Signed-off-by: Tuan Phan <[email protected]>
  • Loading branch information
tphan-ampere committed Apr 21, 2020
1 parent e2b0f47 commit 19a1b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/perf/arm-cmn.c
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ static int arm_cmn_init_pmu(struct arm_cmn *cmn, void __iomem *base, int id)
}

err = devm_request_irq(cmn->dev, irq, arm_cmn_irq_handler,
IRQF_NOBALANCING | IRQF_NO_THREAD,
IRQF_NOBALANCING | IRQF_NO_THREAD| IRQF_SHARED,
dev_name(cmn->dev), dtc);
if (err)
return err;
Expand Down

0 comments on commit 19a1b38

Please sign in to comment.