public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3.8-stable] perf: Fix error return code
@ 2013-04-23  2:57 Jonghwan Choi
  2013-04-23 10:56 ` Luis Henriques
  0 siblings, 1 reply; 3+ messages in thread
From: Jonghwan Choi @ 2013-04-23  2:57 UTC (permalink / raw)
  To: 'Jonghwan Choi', linux-kernel
  Cc: stable, 'Wei Yongjun', 'Peter Zijlstra'

3.8-stable review patch.  If anyone has any objections, please let me know.

------------------

From: "Wei Yongjun <yongjun_wei@trendmicro.com.cn>"

commit c481420248c6730246d2a1b1773d5d7007ae0835 upstream.

Fix to return -ENOMEM in the allocation error case instead of 0
(if pmu_bus_running == 1), as done elsewhere in this function.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Cc: a.p.zijlstra@chello.nl
Cc: paulus@samba.org
Cc: acme@ghostprotocols.net
Link:
http://lkml.kernel.org/r/CAPgLHd8j_fWcgqe%3DKLWjpBj%2B%3Do0Pw6Z-SEq%3DNTPU08
c2w1tngQ@mail.gmail.com
[ Tweaked the error code setting placement and the changelog. ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
---
 kernel/events/core.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/events/core.c b/kernel/events/core.c
index 7b6646a..f6eba58 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -5988,6 +5988,7 @@ skip_type:
 	if (pmu->pmu_cpu_context)
 		goto got_cpu_context;
 
+	ret = -ENOMEM;
 	pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
 	if (!pmu->pmu_cpu_context)
 		goto free_dev;
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 3.8-stable] perf: Fix error return code
  2013-04-23  2:57 [PATCH 3.8-stable] perf: Fix error return code Jonghwan Choi
@ 2013-04-23 10:56 ` Luis Henriques
  2013-05-10  2:08   ` Ben Hutchings
  0 siblings, 1 reply; 3+ messages in thread
From: Luis Henriques @ 2013-04-23 10:56 UTC (permalink / raw)
  To: Jonghwan Choi
  Cc: linux-kernel, stable, 'Wei Yongjun',
	'Peter Zijlstra'

On Tue, Apr 23, 2013 at 11:57:51AM +0900, Jonghwan Choi wrote:
> 3.8-stable review patch.  If anyone has any objections, please let me know.

Thanks, I believe this is also applicable to 3.2.y, 3.4.y and 3.5.y.

Cheers,
--
Luis

> 
> ------------------
> 
> From: "Wei Yongjun <yongjun_wei@trendmicro.com.cn>"
> 
> commit c481420248c6730246d2a1b1773d5d7007ae0835 upstream.
> 
> Fix to return -ENOMEM in the allocation error case instead of 0
> (if pmu_bus_running == 1), as done elsewhere in this function.
> 
> Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
> Cc: a.p.zijlstra@chello.nl
> Cc: paulus@samba.org
> Cc: acme@ghostprotocols.net
> Link:
> http://lkml.kernel.org/r/CAPgLHd8j_fWcgqe%3DKLWjpBj%2B%3Do0Pw6Z-SEq%3DNTPU08
> c2w1tngQ@mail.gmail.com
> [ Tweaked the error code setting placement and the changelog. ]
> Signed-off-by: Ingo Molnar <mingo@kernel.org>
> Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
> ---
>  kernel/events/core.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/kernel/events/core.c b/kernel/events/core.c
> index 7b6646a..f6eba58 100644
> --- a/kernel/events/core.c
> +++ b/kernel/events/core.c
> @@ -5988,6 +5988,7 @@ skip_type:
>  	if (pmu->pmu_cpu_context)
>  		goto got_cpu_context;
>  
> +	ret = -ENOMEM;
>  	pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
>  	if (!pmu->pmu_cpu_context)
>  		goto free_dev;
> -- 
> 1.7.9.5
> 
> --
> To unsubscribe from this list: send the line "unsubscribe stable" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 3.8-stable] perf: Fix error return code
  2013-04-23 10:56 ` Luis Henriques
@ 2013-05-10  2:08   ` Ben Hutchings
  0 siblings, 0 replies; 3+ messages in thread
From: Ben Hutchings @ 2013-05-10  2:08 UTC (permalink / raw)
  To: Luis Henriques
  Cc: Jonghwan Choi, linux-kernel, stable, 'Wei Yongjun',
	'Peter Zijlstra'

[-- Attachment #1: Type: text/plain, Size: 2182 bytes --]

On Tue, 2013-04-23 at 11:56 +0100, Luis Henriques wrote:
> On Tue, Apr 23, 2013 at 11:57:51AM +0900, Jonghwan Choi wrote:
> > 3.8-stable review patch.  If anyone has any objections, please let me know.
> 
> Thanks, I believe this is also applicable to 3.2.y, 3.4.y and 3.5.y.

I agree; I've queued this up for 3.2.y, thanks.

Ben.

> Cheers,
> --
> Luis
> 
> > 
> > ------------------
> > 
> > From: "Wei Yongjun <yongjun_wei@trendmicro.com.cn>"
> > 
> > commit c481420248c6730246d2a1b1773d5d7007ae0835 upstream.
> > 
> > Fix to return -ENOMEM in the allocation error case instead of 0
> > (if pmu_bus_running == 1), as done elsewhere in this function.
> > 
> > Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
> > Cc: a.p.zijlstra@chello.nl
> > Cc: paulus@samba.org
> > Cc: acme@ghostprotocols.net
> > Link:
> > http://lkml.kernel.org/r/CAPgLHd8j_fWcgqe%3DKLWjpBj%2B%3Do0Pw6Z-SEq%3DNTPU08
> > c2w1tngQ@mail.gmail.com
> > [ Tweaked the error code setting placement and the changelog. ]
> > Signed-off-by: Ingo Molnar <mingo@kernel.org>
> > Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
> > ---
> >  kernel/events/core.c |    1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/kernel/events/core.c b/kernel/events/core.c
> > index 7b6646a..f6eba58 100644
> > --- a/kernel/events/core.c
> > +++ b/kernel/events/core.c
> > @@ -5988,6 +5988,7 @@ skip_type:
> >  	if (pmu->pmu_cpu_context)
> >  		goto got_cpu_context;
> >  
> > +	ret = -ENOMEM;
> >  	pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
> >  	if (!pmu->pmu_cpu_context)
> >  		goto free_dev;
> > -- 
> > 1.7.9.5
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe stable" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe stable" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

-- 
Ben Hutchings
For every action, there is an equal and opposite criticism. - Harrison

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-05-10  2:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-23  2:57 [PATCH 3.8-stable] perf: Fix error return code Jonghwan Choi
2013-04-23 10:56 ` Luis Henriques
2013-05-10  2:08   ` Ben Hutchings

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox