On Fri, 9 Mar 2018, tip-bot for Kan Liang wrote: > Commit-ID: 1af22eba248efe2de25658041a80a3d40fb3e92e > Gitweb: https://git.kernel.org/tip/1af22eba248efe2de25658041a80a3d40fb3e92e > Author: Kan Liang <kan.liang@xxxxxxxxxxxxxxx> > AuthorDate: Mon, 12 Feb 2018 14:20:35 -0800 > Committer: Ingo Molnar <mingo@xxxxxxxxxx> > CommitDate: Fri, 9 Mar 2018 08:22:23 +0100 > > perf/x86/intel: Disable userspace RDPMC usage for large PEBS > So this whole commit log is about disabling RDPMC usage for "large PEBS" but the actual change disables RDPMC if "PERF_X86_EVENT_FREERUNNING" Either the commit log is really misleading, or else a poor name was chosen for this feature. Vince > Userspace RDPMC cannot possibly work for large PEBS, which was introduced in: > > b8241d20699e ("perf/x86/intel: Implement batched PEBS interrupt handling (large PEBS interrupt threshold)") > > When the PEBS interrupt threshold is larger than one, there is no way > to get exact auto-reload times and value for userspace RDPMC. Disable > the userspace RDPMC usage when large PEBS is enabled. > > The only exception is when the PEBS interrupt threshold is 1, in which > case user-space RDPMC works well even with auto-reload events. > > Signed-off-by: Kan Liang <kan.liang@xxxxxxxxxxxxxxx> > Signed-off-by: Peter Zijlstra (Intel) <peterz@xxxxxxxxxxxxx> > Cc: Alexander Shishkin <alexander.shishkin@xxxxxxxxxxxxxxx> > Cc: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx> > Cc: Jiri Olsa <jolsa@xxxxxxxxxx> > Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> > Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx> > Cc: Stephane Eranian <eranian@xxxxxxxxxx> > Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> > Cc: Vince Weaver <vincent.weaver@xxxxxxxxx> > Cc: acme@xxxxxxxxxx > Fixes: b8241d20699e ("perf/x86/intel: Implement batched PEBS interrupt handling (large PEBS interrupt threshold)") > Link: http://lkml.kernel.org/r/1518474035-21006-6-git-send-email-kan.liang@xxxxxxxxxxxxxxx > Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx> > --- > arch/x86/events/core.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/arch/x86/events/core.c b/arch/x86/events/core.c > index 00a6251981d2..9c86e10f1196 100644 > --- a/arch/x86/events/core.c > +++ b/arch/x86/events/core.c > @@ -2117,7 +2117,8 @@ static int x86_pmu_event_init(struct perf_event *event) > event->destroy(event); > } > > - if (READ_ONCE(x86_pmu.attr_rdpmc)) > + if (READ_ONCE(x86_pmu.attr_rdpmc) && > + !(event->hw.flags & PERF_X86_EVENT_FREERUNNING)) > event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED; > > return err; > -- To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
![]() |