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

Commit a026dfec authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Ingo Molnar
Browse files

perf_counter: x86: Allow unpriviliged use of NMIs



Apply sysctl_perf_counter_priv to NMIs. Also, fail the counter
creation instead of silently down-grading to regular interrupts.

[ Impact: allow wider perf-counter usage ]

Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
LKML-Reference: <new-submission>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent f5a5a2f6
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -280,8 +280,11 @@ static int __hw_perf_counter_init(struct perf_counter *counter)
	 * If privileged enough, allow NMI events:
	 * If privileged enough, allow NMI events:
	 */
	 */
	hwc->nmi = 0;
	hwc->nmi = 0;
	if (capable(CAP_SYS_ADMIN) && hw_event->nmi)
	if (hw_event->nmi) {
		if (sysctl_perf_counter_priv && !capable(CAP_SYS_ADMIN))
			return -EACCES;
		hwc->nmi = 1;
		hwc->nmi = 1;
	}


	hwc->irq_period	= hw_event->irq_period;
	hwc->irq_period	= hw_event->irq_period;
	if ((s64)hwc->irq_period <= 0 || hwc->irq_period > x86_pmu.max_period)
	if ((s64)hwc->irq_period <= 0 || hwc->irq_period > x86_pmu.max_period)