mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ieee1394: remove NULL checks prior to kfree in ieee1394, kfree handles null pointers fine.
@ 2005-04-16 15:55 Jesper Juhl
  2005-04-21 20:46 ` Jody McIntyre
  0 siblings, 1 reply; 2+ messages in thread
From: Jesper Juhl @ 2005-04-16 15:55 UTC (permalink / raw)
  To: Ben Collins; +Cc: Jody McIntyre, linux1394-devel, linux-kernel

This patch removes redundant NULL pointer checks before kfree() in all of drivers/ieee1394/

Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
---

 drivers/ieee1394/nodemgr.c   |    3 +--
 drivers/ieee1394/ohci1394.c  |    2 +-
 drivers/ieee1394/video1394.c |   29 ++++++++---------------------
 3 files changed, 10 insertions(+), 24 deletions(-)


diff -upr linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/nodemgr.c linux-2.6.12-rc2-mm3/drivers/ieee1394/nodemgr.c
--- linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/nodemgr.c	2005-04-11 21:20:41.000000000 +0200
+++ linux-2.6.12-rc2-mm3/drivers/ieee1394/nodemgr.c	2005-04-16 17:44:23.000000000 +0200
@@ -1006,8 +1006,7 @@ static struct unit_directory *nodemgr_pr
 	return ud;
 
 unit_directory_error:
-	if (ud != NULL)
-		kfree(ud);
+	kfree(ud);
 	return NULL;
 }
 
diff -upr linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/ohci1394.c linux-2.6.12-rc2-mm3/drivers/ieee1394/ohci1394.c
--- linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/ohci1394.c	2005-04-05 21:21:24.000000000 +0200
+++ linux-2.6.12-rc2-mm3/drivers/ieee1394/ohci1394.c	2005-04-16 17:44:48.000000000 +0200
@@ -2893,7 +2893,7 @@ static void free_dma_rcv_ctx(struct dma_
 		kfree(d->prg_cpu);
 		kfree(d->prg_bus);
 	}
-	if (d->spb) kfree(d->spb);
+	kfree(d->spb);
 
 	/* Mark this context as freed. */
 	d->ohci = NULL;
diff -upr linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/video1394.c linux-2.6.12-rc2-mm3/drivers/ieee1394/video1394.c
--- linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/video1394.c	2005-04-11 21:20:41.000000000 +0200
+++ linux-2.6.12-rc2-mm3/drivers/ieee1394/video1394.c	2005-04-16 17:47:03.000000000 +0200
@@ -180,23 +180,13 @@ static int free_dma_iso_ctx(struct dma_i
 		kfree(d->prg_reg);
 	}
 
-	if (d->ir_prg)
-		kfree(d->ir_prg);
-
-	if (d->it_prg)
-		kfree(d->it_prg);
-
-	if (d->buffer_status)
-		kfree(d->buffer_status);
-	if (d->buffer_time)
-		kfree(d->buffer_time);
-	if (d->last_used_cmd)
-		kfree(d->last_used_cmd);
-	if (d->next_buffer)
-		kfree(d->next_buffer);
-
+	kfree(d->ir_prg);
+	kfree(d->it_prg);
+	kfree(d->buffer_status);
+	kfree(d->buffer_time);
+	kfree(d->last_used_cmd);
+	kfree(d->next_buffer);
 	list_del(&d->link);
-
 	kfree(d);
 
 	return 0;
@@ -1060,8 +1050,7 @@ static int __video1394_ioctl(struct file
 			PRINT(KERN_ERR, ohci->host->id,
 			      "Buffer %d is already used",v.buffer);
 			spin_unlock_irqrestore(&d->lock,flags);
-			if (psizes)
-				kfree(psizes);
+			kfree(psizes);
 			return -EBUSY;
 		}
 
@@ -1116,9 +1105,7 @@ static int __video1394_ioctl(struct file
 			}
 		}
 
-		if (psizes)
-			kfree(psizes);
-
+		kfree(psizes);
 		return 0;
 
 	}



-- 
Jesper Juhl

PS. Please CC: me on replies as I'm not subscribed to the linux1394-devel list.



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

* Re: [PATCH] ieee1394: remove NULL checks prior to kfree in ieee1394, kfree handles null pointers fine.
  2005-04-16 15:55 [PATCH] ieee1394: remove NULL checks prior to kfree in ieee1394, kfree handles null pointers fine Jesper Juhl
@ 2005-04-21 20:46 ` Jody McIntyre
  0 siblings, 0 replies; 2+ messages in thread
From: Jody McIntyre @ 2005-04-21 20:46 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: Ben Collins, linux1394-devel, linux-kernel

On Sat, Apr 16, 2005 at 05:55:19PM +0200, Jesper Juhl wrote:
> This patch removes redundant NULL pointer checks before kfree() in all of drivers/ieee1394/

Thanks, applied to our SVN and queued for 2.6.13.

Jody

> 
> Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
> ---
> 
>  drivers/ieee1394/nodemgr.c   |    3 +--
>  drivers/ieee1394/ohci1394.c  |    2 +-
>  drivers/ieee1394/video1394.c |   29 ++++++++---------------------
>  3 files changed, 10 insertions(+), 24 deletions(-)
> 
> 
> diff -upr linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/nodemgr.c linux-2.6.12-rc2-mm3/drivers/ieee1394/nodemgr.c
> --- linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/nodemgr.c	2005-04-11 21:20:41.000000000 +0200
> +++ linux-2.6.12-rc2-mm3/drivers/ieee1394/nodemgr.c	2005-04-16 17:44:23.000000000 +0200
> @@ -1006,8 +1006,7 @@ static struct unit_directory *nodemgr_pr
>  	return ud;
>  
>  unit_directory_error:
> -	if (ud != NULL)
> -		kfree(ud);
> +	kfree(ud);
>  	return NULL;
>  }
>  
> diff -upr linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/ohci1394.c linux-2.6.12-rc2-mm3/drivers/ieee1394/ohci1394.c
> --- linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/ohci1394.c	2005-04-05 21:21:24.000000000 +0200
> +++ linux-2.6.12-rc2-mm3/drivers/ieee1394/ohci1394.c	2005-04-16 17:44:48.000000000 +0200
> @@ -2893,7 +2893,7 @@ static void free_dma_rcv_ctx(struct dma_
>  		kfree(d->prg_cpu);
>  		kfree(d->prg_bus);
>  	}
> -	if (d->spb) kfree(d->spb);
> +	kfree(d->spb);
>  
>  	/* Mark this context as freed. */
>  	d->ohci = NULL;
> diff -upr linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/video1394.c linux-2.6.12-rc2-mm3/drivers/ieee1394/video1394.c
> --- linux-2.6.12-rc2-mm3-orig/drivers/ieee1394/video1394.c	2005-04-11 21:20:41.000000000 +0200
> +++ linux-2.6.12-rc2-mm3/drivers/ieee1394/video1394.c	2005-04-16 17:47:03.000000000 +0200
> @@ -180,23 +180,13 @@ static int free_dma_iso_ctx(struct dma_i
>  		kfree(d->prg_reg);
>  	}
>  
> -	if (d->ir_prg)
> -		kfree(d->ir_prg);
> -
> -	if (d->it_prg)
> -		kfree(d->it_prg);
> -
> -	if (d->buffer_status)
> -		kfree(d->buffer_status);
> -	if (d->buffer_time)
> -		kfree(d->buffer_time);
> -	if (d->last_used_cmd)
> -		kfree(d->last_used_cmd);
> -	if (d->next_buffer)
> -		kfree(d->next_buffer);
> -
> +	kfree(d->ir_prg);
> +	kfree(d->it_prg);
> +	kfree(d->buffer_status);
> +	kfree(d->buffer_time);
> +	kfree(d->last_used_cmd);
> +	kfree(d->next_buffer);
>  	list_del(&d->link);
> -
>  	kfree(d);
>  
>  	return 0;
> @@ -1060,8 +1050,7 @@ static int __video1394_ioctl(struct file
>  			PRINT(KERN_ERR, ohci->host->id,
>  			      "Buffer %d is already used",v.buffer);
>  			spin_unlock_irqrestore(&d->lock,flags);
> -			if (psizes)
> -				kfree(psizes);
> +			kfree(psizes);
>  			return -EBUSY;
>  		}
>  
> @@ -1116,9 +1105,7 @@ static int __video1394_ioctl(struct file
>  			}
>  		}
>  
> -		if (psizes)
> -			kfree(psizes);
> -
> +		kfree(psizes);
>  		return 0;
>  
>  	}
> 
> 
> 
> -- 
> Jesper Juhl
> 
> PS. Please CC: me on replies as I'm not subscribed to the linux1394-devel list.
> 
> 
> 
> 
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> _______________________________________________
> mailing list linux1394-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux1394-devel

-- 

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

end of thread, other threads:[~2005-04-21 20:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-16 15:55 [PATCH] ieee1394: remove NULL checks prior to kfree in ieee1394, kfree handles null pointers fine Jesper Juhl
2005-04-21 20:46 ` Jody McIntyre

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

all inboxes | Powered by JetHome®