public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: me_daq: use schedule_timeout_interruptible()
@ 2015-05-29 15:58 Nicholas Mc Guire
  2015-05-29 16:36 ` Ian Abbott
  0 siblings, 1 reply; 4+ messages in thread
From: Nicholas Mc Guire @ 2015-05-29 15:58 UTC (permalink / raw)
  To: Ian Abbott
  Cc: H Hartley Sweeten, Greg Kroah-Hartman, Davidlohr Bueso, devel,
	linux-kernel, Nicholas Mc Guire

API consolidation with coccinelle found:
./drivers/staging/comedi/drivers/me_daq.c:177:1-17:
        consolidation with schedule_timeout_*() recommended

This is a 1:1 conversion of the current calls to an available helper
only - so only an API consolidation to improve readability.

Patch was compile tested with x86_64_defconfig + CONFIG_STAGING=y,
CONFIG_COMEDI=y, CONFIG_COMEDI_PCI_DRIVERS=y CONFIG_COMEDI_ME_DAQ=m

Patch is against 4.1-rc5 (localversion-next is -next-20150529)

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
---
 drivers/staging/comedi/drivers/me_daq.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/comedi/drivers/me_daq.c b/drivers/staging/comedi/drivers/me_daq.c
index d78e919..9ea1ba4 100644
--- a/drivers/staging/comedi/drivers/me_daq.c
+++ b/drivers/staging/comedi/drivers/me_daq.c
@@ -173,8 +173,7 @@ struct me_private_data {
 
 static inline void sleep(unsigned sec)
 {
-	__set_current_state(TASK_INTERRUPTIBLE);
-	schedule_timeout(sec * HZ);
+	schedule_timeout_interruptible(sec * HZ);
 }
 
 static int me_dio_insn_config(struct comedi_device *dev,
-- 
1.7.10.4


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

* Re: [PATCH] staging: me_daq: use schedule_timeout_interruptible()
  2015-05-29 15:58 [PATCH] staging: me_daq: use schedule_timeout_interruptible() Nicholas Mc Guire
@ 2015-05-29 16:36 ` Ian Abbott
  2015-05-29 16:47   ` Nicholas Mc Guire
  0 siblings, 1 reply; 4+ messages in thread
From: Ian Abbott @ 2015-05-29 16:36 UTC (permalink / raw)
  To: Nicholas Mc Guire
  Cc: H Hartley Sweeten, Greg Kroah-Hartman, Davidlohr Bueso, devel,
	linux-kernel

On 29/05/15 16:58, Nicholas Mc Guire wrote:
> API consolidation with coccinelle found:
> ./drivers/staging/comedi/drivers/me_daq.c:177:1-17:
>          consolidation with schedule_timeout_*() recommended
>
> This is a 1:1 conversion of the current calls to an available helper
> only - so only an API consolidation to improve readability.
>
> Patch was compile tested with x86_64_defconfig + CONFIG_STAGING=y,
> CONFIG_COMEDI=y, CONFIG_COMEDI_PCI_DRIVERS=y CONFIG_COMEDI_ME_DAQ=m
>
> Patch is against 4.1-rc5 (localversion-next is -next-20150529)

Minor niggle: you don't really need to say what version the patch is 
against in the commit message, as the version will have changed by the 
time the patch is committed.  It can be mentioned after the "---" marker 
line if relevant, as the stuff after the "---" line does not end up in 
the commit message.

>
> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
> ---
>   drivers/staging/comedi/drivers/me_daq.c |    3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/staging/comedi/drivers/me_daq.c b/drivers/staging/comedi/drivers/me_daq.c
> index d78e919..9ea1ba4 100644
> --- a/drivers/staging/comedi/drivers/me_daq.c
> +++ b/drivers/staging/comedi/drivers/me_daq.c
> @@ -173,8 +173,7 @@ struct me_private_data {
>
>   static inline void sleep(unsigned sec)
>   {
> -	__set_current_state(TASK_INTERRUPTIBLE);
> -	schedule_timeout(sec * HZ);
> +	schedule_timeout_interruptible(sec * HZ);
>   }
>
>   static int me_dio_insn_config(struct comedi_device *dev,
>

The patch itself looks fine!

Reviewed-by: Ian Abbott <abbotti@mev.co.uk>

-- 
-=( Ian Abbott @ MEV Ltd.    E-mail: <abbotti@mev.co.uk> )=-
-=(                          Web: http://www.mev.co.uk/  )=-

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

* Re: [PATCH] staging: me_daq: use schedule_timeout_interruptible()
  2015-05-29 16:36 ` Ian Abbott
@ 2015-05-29 16:47   ` Nicholas Mc Guire
  2015-05-31  1:19     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Nicholas Mc Guire @ 2015-05-29 16:47 UTC (permalink / raw)
  To: Ian Abbott
  Cc: Nicholas Mc Guire, H Hartley Sweeten, Greg Kroah-Hartman,
	Davidlohr Bueso, devel, linux-kernel

On Fri, 29 May 2015, Ian Abbott wrote:

> On 29/05/15 16:58, Nicholas Mc Guire wrote:
>> API consolidation with coccinelle found:
>> ./drivers/staging/comedi/drivers/me_daq.c:177:1-17:
>>          consolidation with schedule_timeout_*() recommended
>>
>> This is a 1:1 conversion of the current calls to an available helper
>> only - so only an API consolidation to improve readability.
>>
>> Patch was compile tested with x86_64_defconfig + CONFIG_STAGING=y,
>> CONFIG_COMEDI=y, CONFIG_COMEDI_PCI_DRIVERS=y CONFIG_COMEDI_ME_DAQ=m
>>
>> Patch is against 4.1-rc5 (localversion-next is -next-20150529)
>
> Minor niggle: you don't really need to say what version the patch is  
> against in the commit message, as the version will have changed by the  
> time the patch is committed.  It can be mentioned after the "---" marker  
> line if relevant, as the stuff after the "---" line does not end up in  
> the commit message.
>
makes sense - will move that down for the other cleanups.

thx!
hofrat

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

* Re: [PATCH] staging: me_daq: use schedule_timeout_interruptible()
  2015-05-29 16:47   ` Nicholas Mc Guire
@ 2015-05-31  1:19     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2015-05-31  1:19 UTC (permalink / raw)
  To: Nicholas Mc Guire
  Cc: Ian Abbott, devel, Davidlohr Bueso, linux-kernel,
	H Hartley Sweeten, Nicholas Mc Guire

On Fri, May 29, 2015 at 06:47:28PM +0200, Nicholas Mc Guire wrote:
> On Fri, 29 May 2015, Ian Abbott wrote:
> 
> > On 29/05/15 16:58, Nicholas Mc Guire wrote:
> >> API consolidation with coccinelle found:
> >> ./drivers/staging/comedi/drivers/me_daq.c:177:1-17:
> >>          consolidation with schedule_timeout_*() recommended
> >>
> >> This is a 1:1 conversion of the current calls to an available helper
> >> only - so only an API consolidation to improve readability.
> >>
> >> Patch was compile tested with x86_64_defconfig + CONFIG_STAGING=y,
> >> CONFIG_COMEDI=y, CONFIG_COMEDI_PCI_DRIVERS=y CONFIG_COMEDI_ME_DAQ=m
> >>
> >> Patch is against 4.1-rc5 (localversion-next is -next-20150529)
> >
> > Minor niggle: you don't really need to say what version the patch is  
> > against in the commit message, as the version will have changed by the  
> > time the patch is committed.  It can be mentioned after the "---" marker  
> > line if relevant, as the stuff after the "---" line does not end up in  
> > the commit message.
> >
> makes sense - will move that down for the other cleanups.

Please fix up and resend so I don't have to hand-edit the patch.

thanks,

greg k-h

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

end of thread, other threads:[~2015-05-31  1:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-29 15:58 [PATCH] staging: me_daq: use schedule_timeout_interruptible() Nicholas Mc Guire
2015-05-29 16:36 ` Ian Abbott
2015-05-29 16:47   ` Nicholas Mc Guire
2015-05-31  1:19     ` Greg Kroah-Hartman

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