* [PATCH] parisc: kfree cleanup in arch/parisc/
@ 2005-04-11 20:54 Jesper Juhl
2005-04-12 19:22 ` Grant Grundler
0 siblings, 1 reply; 2+ messages in thread
From: Jesper Juhl @ 2005-04-11 20:54 UTC (permalink / raw)
To: Matthew Wilcox, Grant Grundler; +Cc: parisc-linux, linux-kernel
Get rid of redundant NULL pointer checks before kfree() in arch/parisc/ as
well as a few blank lines.
Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
diff -upr linux-2.6.12-rc2-mm3-orig/arch/parisc/kernel/ioctl32.c linux-2.6.12-rc2-mm3/arch/parisc/kernel/ioctl32.c
--- linux-2.6.12-rc2-mm3-orig/arch/parisc/kernel/ioctl32.c 2005-04-05 21:21:08.000000000 +0200
+++ linux-2.6.12-rc2-mm3/arch/parisc/kernel/ioctl32.c 2005-04-11 22:48:03.000000000 +0200
@@ -104,12 +104,9 @@ static int drm32_version(unsigned int fd
}
out:
- if (kversion.name)
- kfree(kversion.name);
- if (kversion.date)
- kfree(kversion.date);
- if (kversion.desc)
- kfree(kversion.desc);
+ kfree(kversion.name);
+ kfree(kversion.date);
+ kfree(kversion.desc);
return ret;
}
@@ -166,9 +163,7 @@ static int drm32_getsetunique(unsigned i
ret = -EFAULT;
}
- if (karg.unique != NULL)
- kfree(karg.unique);
-
+ kfree(karg.unique);
return ret;
}
@@ -265,7 +260,6 @@ static int drm32_info_bufs(unsigned int
}
kfree(karg.list);
-
return ret;
}
@@ -305,7 +299,6 @@ static int drm32_free_bufs(unsigned int
out:
kfree(karg.list);
-
return ret;
}
@@ -494,15 +487,10 @@ static int drm32_dma(unsigned int fd, un
}
out:
- if (karg.send_indices)
- kfree(karg.send_indices);
- if (karg.send_sizes)
- kfree(karg.send_sizes);
- if (karg.request_indices)
- kfree(karg.request_indices);
- if (karg.request_sizes)
- kfree(karg.request_sizes);
-
+ kfree(karg.send_indices);
+ kfree(karg.send_sizes);
+ kfree(karg.request_indices);
+ kfree(karg.request_sizes);
return ret;
}
@@ -555,9 +543,7 @@ static int drm32_res_ctx(unsigned int fd
ret = -EFAULT;
}
- if (karg.contexts)
- kfree(karg.contexts);
-
+ kfree(karg.contexts);
return ret;
}
PS. If you reply to lists other than Linux-kernel, then please keep me on CC:
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] parisc: kfree cleanup in arch/parisc/
2005-04-11 20:54 [PATCH] parisc: kfree cleanup in arch/parisc/ Jesper Juhl
@ 2005-04-12 19:22 ` Grant Grundler
0 siblings, 0 replies; 2+ messages in thread
From: Grant Grundler @ 2005-04-12 19:22 UTC (permalink / raw)
To: Jesper Juhl; +Cc: Matthew Wilcox, Grant Grundler, parisc-linux, linux-kernel
On Mon, Apr 11, 2005 at 10:54:25PM +0200, Jesper Juhl wrote:
> Get rid of redundant NULL pointer checks before kfree() in arch/parisc/ as
> well as a few blank lines.
>
> Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
thanks!
Commited to cvs.parisc-linux.org:
http://lists.parisc-linux.org/pipermail/parisc-linux-cvs/2005-April/035542.html
I expect Matthew Wilcox will submit to linus with other parisc code changes
in the next RC release.
thanks,
grant
>
> diff -upr linux-2.6.12-rc2-mm3-orig/arch/parisc/kernel/ioctl32.c linux-2.6.12-rc2-mm3/arch/parisc/kernel/ioctl32.c
> --- linux-2.6.12-rc2-mm3-orig/arch/parisc/kernel/ioctl32.c 2005-04-05 21:21:08.000000000 +0200
> +++ linux-2.6.12-rc2-mm3/arch/parisc/kernel/ioctl32.c 2005-04-11 22:48:03.000000000 +0200
> @@ -104,12 +104,9 @@ static int drm32_version(unsigned int fd
> }
>
> out:
> - if (kversion.name)
> - kfree(kversion.name);
> - if (kversion.date)
> - kfree(kversion.date);
> - if (kversion.desc)
> - kfree(kversion.desc);
> + kfree(kversion.name);
> + kfree(kversion.date);
> + kfree(kversion.desc);
> return ret;
> }
>
> @@ -166,9 +163,7 @@ static int drm32_getsetunique(unsigned i
> ret = -EFAULT;
> }
>
> - if (karg.unique != NULL)
> - kfree(karg.unique);
> -
> + kfree(karg.unique);
> return ret;
> }
>
> @@ -265,7 +260,6 @@ static int drm32_info_bufs(unsigned int
> }
>
> kfree(karg.list);
> -
> return ret;
> }
>
> @@ -305,7 +299,6 @@ static int drm32_free_bufs(unsigned int
>
> out:
> kfree(karg.list);
> -
> return ret;
> }
>
> @@ -494,15 +487,10 @@ static int drm32_dma(unsigned int fd, un
> }
>
> out:
> - if (karg.send_indices)
> - kfree(karg.send_indices);
> - if (karg.send_sizes)
> - kfree(karg.send_sizes);
> - if (karg.request_indices)
> - kfree(karg.request_indices);
> - if (karg.request_sizes)
> - kfree(karg.request_sizes);
> -
> + kfree(karg.send_indices);
> + kfree(karg.send_sizes);
> + kfree(karg.request_indices);
> + kfree(karg.request_sizes);
> return ret;
> }
>
> @@ -555,9 +543,7 @@ static int drm32_res_ctx(unsigned int fd
> ret = -EFAULT;
> }
>
> - if (karg.contexts)
> - kfree(karg.contexts);
> -
> + kfree(karg.contexts);
> return ret;
> }
>
>
>
>
>
> PS. If you reply to lists other than Linux-kernel, then please keep me on CC:
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-04-12 20:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-11 20:54 [PATCH] parisc: kfree cleanup in arch/parisc/ Jesper Juhl
2005-04-12 19:22 ` Grant Grundler
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®