stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clocksource: dw_apb: fix error check
@ 2013-05-27 11:51 Baruch Siach
  2013-05-27 13:14 ` Daniel Lezcano
  2013-05-29  8:22 ` Daniel Lezcano
  0 siblings, 2 replies; 5+ messages in thread
From: Baruch Siach @ 2013-05-27 11:51 UTC (permalink / raw)
  To: John Stultz, Thomas Gleixner; +Cc: linux-kernel, Baruch Siach, stable

irq_of_parse_and_map() returns 0 on error, while the code checks for NO_IRQ.
This breaks on platforms that have NO_IRQ != 0.

Cc: <stable@vger.kernel.org>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 drivers/clocksource/dw_apb_timer_of.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clocksource/dw_apb_timer_of.c b/drivers/clocksource/dw_apb_timer_of.c
index 9fdb4d3..843d43b 100644
--- a/drivers/clocksource/dw_apb_timer_of.c
+++ b/drivers/clocksource/dw_apb_timer_of.c
@@ -47,7 +47,7 @@ static void add_clockevent(struct device_node *event_timer)
 	u32 irq, rate;
 
 	irq = irq_of_parse_and_map(event_timer, 0);
-	if (irq == NO_IRQ)
+	if (irq == 0)
 		panic("No IRQ for clock event timer");
 
 	timer_get_base_and_rate(event_timer, &iobase, &rate);
-- 
1.7.10.4


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

* Re: [PATCH] clocksource: dw_apb: fix error check
  2013-05-27 11:51 [PATCH] clocksource: dw_apb: fix error check Baruch Siach
@ 2013-05-27 13:14 ` Daniel Lezcano
  2013-05-27 13:49   ` Baruch Siach
  2013-05-29  8:22 ` Daniel Lezcano
  1 sibling, 1 reply; 5+ messages in thread
From: Daniel Lezcano @ 2013-05-27 13:14 UTC (permalink / raw)
  To: Baruch Siach; +Cc: John Stultz, Thomas Gleixner, linux-kernel, stable

On 05/27/2013 01:51 PM, Baruch Siach wrote:
> irq_of_parse_and_map() returns 0 on error, while the code checks for NO_IRQ.
> This breaks on platforms that have NO_IRQ != 0.
> 
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---

Shouldn't the 'irq_of_parse_and_map' function to be fixed and return
NO_IRQ in case of error ? (even if some code checks the return value is
'zero' in case of error [1], while some other code checks NO_IRQ [2]).

[1]
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/x86/kernel/devicetree.c#n124

[2]
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/powerpc/sysdev/fsl_msi.c#n344


>  drivers/clocksource/dw_apb_timer_of.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clocksource/dw_apb_timer_of.c b/drivers/clocksource/dw_apb_timer_of.c
> index 9fdb4d3..843d43b 100644
> --- a/drivers/clocksource/dw_apb_timer_of.c
> +++ b/drivers/clocksource/dw_apb_timer_of.c
> @@ -47,7 +47,7 @@ static void add_clockevent(struct device_node *event_timer)
>  	u32 irq, rate;
>  
>  	irq = irq_of_parse_and_map(event_timer, 0);
> -	if (irq == NO_IRQ)
> +	if (irq == 0)
>  		panic("No IRQ for clock event timer");
>  
>  	timer_get_base_and_rate(event_timer, &iobase, &rate);
> 


-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


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

* Re: [PATCH] clocksource: dw_apb: fix error check
  2013-05-27 13:14 ` Daniel Lezcano
@ 2013-05-27 13:49   ` Baruch Siach
  2013-05-27 14:27     ` Daniel Lezcano
  0 siblings, 1 reply; 5+ messages in thread
From: Baruch Siach @ 2013-05-27 13:49 UTC (permalink / raw)
  To: Daniel Lezcano; +Cc: John Stultz, Thomas Gleixner, linux-kernel, stable

Hi Daniel,

On Mon, May 27, 2013 at 03:14:23PM +0200, Daniel Lezcano wrote:
> On 05/27/2013 01:51 PM, Baruch Siach wrote:
> > irq_of_parse_and_map() returns 0 on error, while the code checks for NO_IRQ.
> > This breaks on platforms that have NO_IRQ != 0.
> > 
> > Cc: <stable@vger.kernel.org>
> > Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> > ---
> 
> Shouldn't the 'irq_of_parse_and_map' function to be fixed and return
> NO_IRQ in case of error ? (even if some code checks the return value is
> 'zero' in case of error [1], while some other code checks NO_IRQ [2]).

Probably not. See http://lwn.net/Articles/470820/.

baruch

> [1]
> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/x86/kernel/devicetree.c#n124
> 
> [2]
> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/powerpc/sysdev/fsl_msi.c#n344
> 
> 
> >  drivers/clocksource/dw_apb_timer_of.c |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/clocksource/dw_apb_timer_of.c b/drivers/clocksource/dw_apb_timer_of.c
> > index 9fdb4d3..843d43b 100644
> > --- a/drivers/clocksource/dw_apb_timer_of.c
> > +++ b/drivers/clocksource/dw_apb_timer_of.c
> > @@ -47,7 +47,7 @@ static void add_clockevent(struct device_node *event_timer)
> >  	u32 irq, rate;
> >  
> >  	irq = irq_of_parse_and_map(event_timer, 0);
> > -	if (irq == NO_IRQ)
> > +	if (irq == 0)
> >  		panic("No IRQ for clock event timer");
> >  
> >  	timer_get_base_and_rate(event_timer, &iobase, &rate);

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* Re: [PATCH] clocksource: dw_apb: fix error check
  2013-05-27 13:49   ` Baruch Siach
@ 2013-05-27 14:27     ` Daniel Lezcano
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Lezcano @ 2013-05-27 14:27 UTC (permalink / raw)
  To: Baruch Siach; +Cc: John Stultz, Thomas Gleixner, linux-kernel, stable

On 05/27/2013 03:49 PM, Baruch Siach wrote:
> Hi Daniel,
> 
> On Mon, May 27, 2013 at 03:14:23PM +0200, Daniel Lezcano wrote:
>> On 05/27/2013 01:51 PM, Baruch Siach wrote:
>>> irq_of_parse_and_map() returns 0 on error, while the code checks for NO_IRQ.
>>> This breaks on platforms that have NO_IRQ != 0.
>>>
>>> Cc: <stable@vger.kernel.org>
>>> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
>>> ---
>>
>> Shouldn't the 'irq_of_parse_and_map' function to be fixed and return
>> NO_IRQ in case of error ? (even if some code checks the return value is
>> 'zero' in case of error [1], while some other code checks NO_IRQ [2]).
> 
> Probably not. See http://lwn.net/Articles/470820/.

Very interesting. Thx for the pointer !

  -- Daniel

-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


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

* Re: [PATCH] clocksource: dw_apb: fix error check
  2013-05-27 11:51 [PATCH] clocksource: dw_apb: fix error check Baruch Siach
  2013-05-27 13:14 ` Daniel Lezcano
@ 2013-05-29  8:22 ` Daniel Lezcano
  1 sibling, 0 replies; 5+ messages in thread
From: Daniel Lezcano @ 2013-05-29  8:22 UTC (permalink / raw)
  To: Baruch Siach; +Cc: John Stultz, Thomas Gleixner, linux-kernel, stable

On 05/27/2013 01:51 PM, Baruch Siach wrote:
> irq_of_parse_and_map() returns 0 on error, while the code checks for NO_IRQ.
> This breaks on platforms that have NO_IRQ != 0.
> 
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---

I queued the patch in my tree [1] for 3.11

Thanks
  -- Daniel

[1]
https://git.linaro.org/gitweb?p=people/dlezcano/clockevents.git;a=shortlog;h=refs/heads/timers/clockevents

-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


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

end of thread, other threads:[~2013-05-29  8:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-27 11:51 [PATCH] clocksource: dw_apb: fix error check Baruch Siach
2013-05-27 13:14 ` Daniel Lezcano
2013-05-27 13:49   ` Baruch Siach
2013-05-27 14:27     ` Daniel Lezcano
2013-05-29  8:22 ` Daniel Lezcano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).