All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/6] staging: comedi: comedi_fops: Remove useless statements
@ 2016-02-10  8:59 Amitoj Kaur Chawla
  2016-02-10  9:12 ` [Outreachy kernel] " Julia Lawall
  2016-02-12  3:44 ` Greg KH
  0 siblings, 2 replies; 3+ messages in thread
From: Amitoj Kaur Chawla @ 2016-02-10  8:59 UTC (permalink / raw)
  To: outreachy-kernel

Drop if conditions that have an unrequired return in a void function.

Found using Coccinelle. The semantic patch used to find this is as
follows:

//<smpl>
@@
statement S;
expression e,x;
@@

* if(e)
(
{ ... return ...; }
&
S
)

* if(x)
(
{ ... return ...; }
&
S
)
//</smpl>

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
---
 drivers/staging/comedi/comedi_fops.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c
index d6bcf73..35e79d7 100644
--- a/drivers/staging/comedi/comedi_fops.c
+++ b/drivers/staging/comedi/comedi_fops.c
@@ -2811,12 +2811,6 @@ void comedi_free_subdevice_minor(struct comedi_subdevice *s)
 {
 	unsigned int i;
 
-	if (!s)
-		return;
-	if (s->minor < COMEDI_NUM_BOARD_MINORS ||
-	    s->minor >= COMEDI_NUM_MINORS)
-		return;
-
 	i = s->minor - COMEDI_NUM_BOARD_MINORS;
 	mutex_lock(&comedi_subdevice_minor_table_lock);
 	if (s == comedi_subdevice_minor_table[i])
-- 
1.9.1



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

* Re: [Outreachy kernel] [PATCH 3/6] staging: comedi: comedi_fops: Remove useless statements
  2016-02-10  8:59 [PATCH 3/6] staging: comedi: comedi_fops: Remove useless statements Amitoj Kaur Chawla
@ 2016-02-10  9:12 ` Julia Lawall
  2016-02-12  3:44 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Julia Lawall @ 2016-02-10  9:12 UTC (permalink / raw)
  To: Amitoj Kaur Chawla; +Cc: outreachy-kernel

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1774 bytes --]

On Wed, 10 Feb 2016, Amitoj Kaur Chawla wrote:

> Drop if conditions that have an unrequired return in a void function.

The return is needed if it doesn´t come at the end of the function.  You
want to skip over the rest of the code.

julia

>
> Found using Coccinelle. The semantic patch used to find this is as
> follows:
>
> //<smpl>
> @@
> statement S;
> expression e,x;
> @@
>
> * if(e)
> (
> { ... return ...; }
> &
> S
> )
>
> * if(x)
> (
> { ... return ...; }
> &
> S
> )
> //</smpl>
>
> Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
> ---
>  drivers/staging/comedi/comedi_fops.c | 6 ------
>  1 file changed, 6 deletions(-)
>
> diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c
> index d6bcf73..35e79d7 100644
> --- a/drivers/staging/comedi/comedi_fops.c
> +++ b/drivers/staging/comedi/comedi_fops.c
> @@ -2811,12 +2811,6 @@ void comedi_free_subdevice_minor(struct comedi_subdevice *s)
>  {
>  	unsigned int i;
>
> -	if (!s)
> -		return;
> -	if (s->minor < COMEDI_NUM_BOARD_MINORS ||
> -	    s->minor >= COMEDI_NUM_MINORS)
> -		return;
> -
>  	i = s->minor - COMEDI_NUM_BOARD_MINORS;
>  	mutex_lock(&comedi_subdevice_minor_table_lock);
>  	if (s == comedi_subdevice_minor_table[i])
> --
> 1.9.1
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20160210085922.GA14616%40amitoj-Inspiron-3542.
> For more options, visit https://groups.google.com/d/optout.
>

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

* Re: [Outreachy kernel] [PATCH 3/6] staging: comedi: comedi_fops: Remove useless statements
  2016-02-10  8:59 [PATCH 3/6] staging: comedi: comedi_fops: Remove useless statements Amitoj Kaur Chawla
  2016-02-10  9:12 ` [Outreachy kernel] " Julia Lawall
@ 2016-02-12  3:44 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2016-02-12  3:44 UTC (permalink / raw)
  To: Amitoj Kaur Chawla; +Cc: outreachy-kernel

On Wed, Feb 10, 2016 at 02:29:22PM +0530, Amitoj Kaur Chawla wrote:
> Drop if conditions that have an unrequired return in a void function.
> 
> Found using Coccinelle. The semantic patch used to find this is as
> follows:
> 
> //<smpl>
> @@
> statement S;
> expression e,x;
> @@
> 
> * if(e)
> (
> { ... return ...; }
> &
> S
> )
> 
> * if(x)
> (
> { ... return ...; }
> &
> S
> )
> //</smpl>
> 
> Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
> ---
>  drivers/staging/comedi/comedi_fops.c | 6 ------
>  1 file changed, 6 deletions(-)
> 
> diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c
> index d6bcf73..35e79d7 100644
> --- a/drivers/staging/comedi/comedi_fops.c
> +++ b/drivers/staging/comedi/comedi_fops.c
> @@ -2811,12 +2811,6 @@ void comedi_free_subdevice_minor(struct comedi_subdevice *s)
>  {
>  	unsigned int i;
>  
> -	if (!s)
> -		return;
> -	if (s->minor < COMEDI_NUM_BOARD_MINORS ||
> -	    s->minor >= COMEDI_NUM_MINORS)
> -		return;
> -

And you just crashed the kernel :(

not good...

Please be more careful.

greg k-h


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

end of thread, other threads:[~2016-02-12  3:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-10  8:59 [PATCH 3/6] staging: comedi: comedi_fops: Remove useless statements Amitoj Kaur Chawla
2016-02-10  9:12 ` [Outreachy kernel] " Julia Lawall
2016-02-12  3:44 ` Greg KH

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.