From: mark.rutland@arm.com (Mark Rutland)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 10/10] arm: perf: Fix memory leak when probing PMU PPIs
Date: Fri, 15 May 2015 18:07:07 +0100 [thread overview]
Message-ID: <20150515170707.GE23652@leverpostej> (raw)
In-Reply-To: <1431704514-4204-1-git-send-email-shailendra.capricorn@gmail.com>
On Fri, May 15, 2015 at 04:41:54PM +0100, Shailendra Verma wrote:
> Commit 338d9dd3e2ae ("ARM: 8351/1: perf: don't warn about missing
> interrupt-affinity property for PPIs") added a check for PPIs so that
> we avoid parsing the interrupt-affinity property for these naturally
> affine interrupts.
>
> Unfortunately, this check can trigger an early (successful) return and
> we will leak the irqs array. This patch fixes the issue by reordering
> the code so that the check is performed before any independent
> allocation.
>
> Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
> ---
> arch/arm/kernel/perf_event_cpu.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/arch/arm/kernel/perf_event_cpu.c b/arch/arm/kernel/perf_event_cpu.c
> index 213919b..a7099ee 100644
> --- a/arch/arm/kernel/perf_event_cpu.c
> +++ b/arch/arm/kernel/perf_event_cpu.c
> @@ -303,17 +303,17 @@ static int probe_current_pmu(struct arm_pmu *pmu)
>
> static int of_pmu_irq_cfg(struct platform_device *pdev)
> {
> - int i, irq;
> - int *irqs = kcalloc(pdev->num_resources, sizeof(*irqs), GFP_KERNEL);
> -
> - if (!irqs)
> - return -ENOMEM;
> + int i, irq, *irqs;
>
> /* Don't bother with PPIs; they're already affine */
> irq = platform_get_irq(pdev, 0);
> if (irq >= 0 && irq_is_percpu(irq))
> return 0;
>
> + irqs = kcalloc(pdev->num_resources, sizeof(*irqs), GFP_KERNEL);
> + if (!irqs)
> + return -ENOMEM;
> +
Will Deacon posted a patch for this a few days ago [1], and it's
allready in Russell's patch system as 8357/1.
Thanks,
Mark.
[1] http://lists.infradead.org/pipermail/linux-arm-kernel/2015-May/342367.html
[2] http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=8357/1
WARNING: multiple messages have this Message-ID (diff)
From: Mark Rutland <mark.rutland@arm.com>
To: Shailendra Verma <shailendra.capricorn@gmail.com>
Cc: Will Deacon <Will.Deacon@arm.com>,
Russell King <linux@arm.linux.org.uk>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Paul Mackerras <paulus@samba.org>, Ingo Molnar <mingo@redhat.com>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 10/10] arm: perf: Fix memory leak when probing PMU PPIs
Date: Fri, 15 May 2015 18:07:07 +0100 [thread overview]
Message-ID: <20150515170707.GE23652@leverpostej> (raw)
In-Reply-To: <1431704514-4204-1-git-send-email-shailendra.capricorn@gmail.com>
On Fri, May 15, 2015 at 04:41:54PM +0100, Shailendra Verma wrote:
> Commit 338d9dd3e2ae ("ARM: 8351/1: perf: don't warn about missing
> interrupt-affinity property for PPIs") added a check for PPIs so that
> we avoid parsing the interrupt-affinity property for these naturally
> affine interrupts.
>
> Unfortunately, this check can trigger an early (successful) return and
> we will leak the irqs array. This patch fixes the issue by reordering
> the code so that the check is performed before any independent
> allocation.
>
> Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
> ---
> arch/arm/kernel/perf_event_cpu.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/arch/arm/kernel/perf_event_cpu.c b/arch/arm/kernel/perf_event_cpu.c
> index 213919b..a7099ee 100644
> --- a/arch/arm/kernel/perf_event_cpu.c
> +++ b/arch/arm/kernel/perf_event_cpu.c
> @@ -303,17 +303,17 @@ static int probe_current_pmu(struct arm_pmu *pmu)
>
> static int of_pmu_irq_cfg(struct platform_device *pdev)
> {
> - int i, irq;
> - int *irqs = kcalloc(pdev->num_resources, sizeof(*irqs), GFP_KERNEL);
> -
> - if (!irqs)
> - return -ENOMEM;
> + int i, irq, *irqs;
>
> /* Don't bother with PPIs; they're already affine */
> irq = platform_get_irq(pdev, 0);
> if (irq >= 0 && irq_is_percpu(irq))
> return 0;
>
> + irqs = kcalloc(pdev->num_resources, sizeof(*irqs), GFP_KERNEL);
> + if (!irqs)
> + return -ENOMEM;
> +
Will Deacon posted a patch for this a few days ago [1], and it's
allready in Russell's patch system as 8357/1.
Thanks,
Mark.
[1] http://lists.infradead.org/pipermail/linux-arm-kernel/2015-May/342367.html
[2] http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=8357/1
next prev parent reply other threads:[~2015-05-15 17:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-15 15:41 [PATCH 10/10] arm: perf: Fix memory leak when probing PMU PPIs Shailendra Verma
2015-05-15 15:41 ` Shailendra Verma
2015-05-15 17:07 ` Mark Rutland [this message]
2015-05-15 17:07 ` Mark Rutland
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150515170707.GE23652@leverpostej \
--to=mark.rutland@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.