Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1339364 > unrolled thread
| Started by | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| First post | 2016-02-22 12:20 +0100 |
| Last post | 2016-02-22 13:10 +0100 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[patch V2 10/28] x86/perf/intel_uncore: Store box in event->pmu_private Thomas Gleixner <tglx@linutronix.de> - 2016-02-22 12:20 +0100
Re: [patch V2 10/28] x86/perf/intel_uncore: Store box in event->pmu_private Peter Zijlstra <peterz@infradead.org> - 2016-02-22 12:50 +0100
Re: [patch V2 10/28] x86/perf/intel_uncore: Store box in event->pmu_private Thomas Gleixner <tglx@linutronix.de> - 2016-02-22 13:10 +0100
Re: [patch V2 10/28] x86/perf/intel_uncore: Store box in event->pmu_private Peter Zijlstra <peterz@infradead.org> - 2016-02-22 13:00 +0100
Re: [patch V2 10/28] x86/perf/intel_uncore: Store box in event->pmu_private Thomas Gleixner <tglx@linutronix.de> - 2016-02-22 13:10 +0100
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2016-02-22 12:20 +0100 |
| Subject | [patch V2 10/28] x86/perf/intel_uncore: Store box in event->pmu_private |
| Message-ID | <r4WH0-4WG-9@gated-at.bofh.it> |
Store the pmu in event->pmu_private, so we can get rid of the per cpu data
storage.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
arch/x86/kernel/cpu/perf_event_intel_uncore.c | 15 +--------------
arch/x86/kernel/cpu/perf_event_intel_uncore.h | 12 ++++++++++--
arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c | 1 +
3 files changed, 12 insertions(+), 16 deletions(-)
Index: b/arch/x86/kernel/cpu/perf_event_intel_uncore.c
===================================================================
--- a/arch/x86/kernel/cpu/perf_event_intel_uncore.c
+++ b/arch/x86/kernel/cpu/perf_event_intel_uncore.c
@@ -92,11 +92,6 @@ ssize_t uncore_event_show(struct kobject
return sprintf(buf, "%s", event->config);
}
-struct intel_uncore_pmu *uncore_event_to_pmu(struct perf_event *event)
-{
- return container_of(event->pmu, struct intel_uncore_pmu, pmu);
-}
-
struct intel_uncore_box *uncore_pmu_to_box(struct intel_uncore_pmu *pmu, int cpu)
{
struct intel_uncore_box *box;
@@ -122,15 +117,6 @@ struct intel_uncore_box *uncore_pmu_to_b
return *per_cpu_ptr(pmu->box, cpu);
}
-struct intel_uncore_box *uncore_event_to_box(struct perf_event *event)
-{
- /*
- * perf core schedules event on the basis of cpu, uncore events are
- * collected by one of the cpus inside a physical package.
- */
- return uncore_pmu_to_box(uncore_event_to_pmu(event), smp_processor_id());
-}
-
u64 uncore_msr_read_counter(struct intel_uncore_box *box, struct perf_event *event)
{
u64 count;
@@ -690,6 +676,7 @@ static int uncore_pmu_event_init(struct
if (!box || box->cpu < 0)
return -EINVAL;
event->cpu = box->cpu;
+ event->pmu_private = box;
event->hw.idx = -1;
event->hw.last_tag = ~0ULL;
Index: b/arch/x86/kernel/cpu/perf_event_intel_uncore.h
===================================================================
--- a/arch/x86/kernel/cpu/perf_event_intel_uncore.h
+++ b/arch/x86/kernel/cpu/perf_event_intel_uncore.h
@@ -319,9 +319,17 @@ static inline bool uncore_box_is_fake(st
return (box->phys_id < 0);
}
-struct intel_uncore_pmu *uncore_event_to_pmu(struct perf_event *event);
+static inline struct intel_uncore_pmu *uncore_event_to_pmu(struct perf_event *event)
+{
+ return container_of(event->pmu, struct intel_uncore_pmu, pmu);
+}
+
+static inline struct intel_uncore_box *uncore_event_to_box(struct perf_event *event)
+{
+ return event->pmu_private;
+}
+
struct intel_uncore_box *uncore_pmu_to_box(struct intel_uncore_pmu *pmu, int cpu);
-struct intel_uncore_box *uncore_event_to_box(struct perf_event *event);
u64 uncore_msr_read_counter(struct intel_uncore_box *box, struct perf_event *event);
void uncore_pmu_start_hrtimer(struct intel_uncore_box *box);
void uncore_pmu_cancel_hrtimer(struct intel_uncore_box *box);
Index: b/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c
===================================================================
--- a/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c
+++ b/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c
@@ -313,6 +313,7 @@ static int snb_uncore_imc_event_init(str
return -EINVAL;
event->cpu = box->cpu;
+ event->pmu_private = pmu;
event->hw.idx = -1;
event->hw.last_tag = ~0ULL;
[toc] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2016-02-22 12:50 +0100 |
| Message-ID | <r4Xa3-5ds-21@gated-at.bofh.it> |
| In reply to | #1339364 |
On Mon, Feb 22, 2016 at 11:06:50AM -0000, Thomas Gleixner wrote: > Index: b/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c > =================================================================== > --- a/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c > +++ b/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c > @@ -313,6 +313,7 @@ static int snb_uncore_imc_event_init(str > return -EINVAL; > > event->cpu = box->cpu; > + event->pmu_private = pmu; This seems rather pointless, did you want that to be '= box' instead? > > event->hw.idx = -1; > event->hw.last_tag = ~0ULL; > >
[toc] | [prev] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2016-02-22 13:10 +0100 |
| Message-ID | <r4Xto-5Eo-17@gated-at.bofh.it> |
| In reply to | #1339413 |
On Mon, 22 Feb 2016, Peter Zijlstra wrote: > On Mon, Feb 22, 2016 at 11:06:50AM -0000, Thomas Gleixner wrote: > > Index: b/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c > > =================================================================== > > --- a/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c > > +++ b/arch/x86/kernel/cpu/perf_event_intel_uncore_snb.c > > @@ -313,6 +313,7 @@ static int snb_uncore_imc_event_init(str > > return -EINVAL; > > > > event->cpu = box->cpu; > > + event->pmu_private = pmu; > > This seems rather pointless, did you want that to be '= box' instead? Duh, yes.
[toc] | [prev] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2016-02-22 13:00 +0100 |
| Message-ID | <r4XjJ-5i9-23@gated-at.bofh.it> |
| In reply to | #1339364 |
On Mon, Feb 22, 2016 at 11:06:50AM -0000, Thomas Gleixner wrote:
> + event->pmu_private = box;
> +static inline struct intel_uncore_box *uncore_event_to_box(struct perf_event *event)
> +{
> + return event->pmu_private;
> +}
Do you really need this? That is, what is wrong with:
static inline struct intel_uncore_box *uncore_event_to_box(struct perf_event *event)
{
return uncore_pmu_to_box(event->pmu, event->cpu);
}
Which, after patch 12, should be fairly trivial, right?
[toc] | [prev] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2016-02-22 13:10 +0100 |
| Message-ID | <r4Xtp-5Eo-23@gated-at.bofh.it> |
| In reply to | #1339420 |
On Mon, 22 Feb 2016, Peter Zijlstra wrote:
> On Mon, Feb 22, 2016 at 11:06:50AM -0000, Thomas Gleixner wrote:
> > + event->pmu_private = box;
>
> > +static inline struct intel_uncore_box *uncore_event_to_box(struct perf_event *event)
> > +{
> > + return event->pmu_private;
> > +}
>
> Do you really need this? That is, what is wrong with:
>
> static inline struct intel_uncore_box *uncore_event_to_box(struct perf_event *event)
> {
> return uncore_pmu_to_box(event->pmu, event->cpu);
> }
>
> Which, after patch 12, should be fairly trivial, right?
Yes.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web