| To: | Deng-Cheng Zhu <dengcheng.zhu@gmail.com> |
|---|---|
| Subject: | Re: [PATCH v2 3/5] MIPS/Perf-events: Fix event check in validate_event() |
| From: | Will Deacon <will.deacon@arm.com> |
| Date: | Fri, 26 Nov 2010 09:37:14 +0000 |
| Cc: | ralf@linux-mips.org, a.p.zijlstra@chello.nl, fweisbec@gmail.com, linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, wuzhangjin@gmail.com, paulus@samba.org, mingo@elte.hu, acme@redhat.com |
| In-reply-to: | <1290740707-32586-4-git-send-email-dengcheng.zhu@gmail.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <1290740707-32586-1-git-send-email-dengcheng.zhu@gmail.com> <1290740707-32586-4-git-send-email-dengcheng.zhu@gmail.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
On Fri, 2010-11-26 at 03:05 +0000, Deng-Cheng Zhu wrote:
> Ignore events that are in off/error state or belong to a different PMU.
>
> This patch originates from the following commit for ARM by Will Deacon:
>
> 65b4711ff513767341aa1915c822de6ec0de65cb
> ARM: 6352/1: perf: fix event validation
>
> Signed-off-by: Deng-Cheng Zhu <dengcheng.zhu@gmail.com>
> ---
> arch/mips/kernel/perf_event.c | 5 +++--
> 1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/arch/mips/kernel/perf_event.c b/arch/mips/kernel/perf_event.c
> index 1ee44a3..3d55761 100644
> --- a/arch/mips/kernel/perf_event.c
> +++ b/arch/mips/kernel/perf_event.c
> @@ -486,8 +486,9 @@ static int validate_event(struct cpu_hw_events *cpuc,
> {
> struct hw_perf_event fake_hwc = event->hw;
>
> - if (event->pmu && event->pmu != &pmu)
> - return 0;
> + /* Allow mixed event group. So return 1 to pass validation. */
> + if (event->pmu != &pmu || event->state <= PERF_EVENT_STATE_OFF)
> + return 1;
>
> return mipspmu->alloc_counter(cpuc, &fake_hwc) >= 0;
> }
This looks better,
Acked-by: Will Deacon <will.deacon@arm.com>
Will
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: RFC: Mega rename of device tree routines from of_*() to dt_*(), Mitch Bradley |
|---|---|
| Next by Date: | Re: [PATCH v2 1/5] MIPS/Perf-events: Work with irq_work, Matt Fleming |
| Previous by Thread: | [PATCH v2 3/5] MIPS/Perf-events: Fix event check in validate_event(), Deng-Cheng Zhu |
| Next by Thread: | [PATCH v2 5/5] MIPS/Perf-events: Use unsigned delta for right shift in event update, Deng-Cheng Zhu |
| Indexes: | [Date] [Thread] [Top] [All Lists] |