lkml.org 
[lkml]   [2005]   [Nov]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] fs/relayfs: Replace kcalloc(1, with kzalloc.
Date
From
Hi, 

This patch replaces two occurrences of kcalloc(1, with kzallocs.

Signed-off-by: Panagiotis Issaris <takis@issaris.org>

---

fs/relayfs/buffers.c | 2 +-
fs/relayfs/relay.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

applies-to: 7d508394035f9dd2079f486bc2d0beb4cb25b491
5dac836e6db3c123fde60e00ec1b1040850289b2
diff --git a/fs/relayfs/buffers.c b/fs/relayfs/buffers.c
index 84e21ff..ce65964 100644
--- a/fs/relayfs/buffers.c
+++ b/fs/relayfs/buffers.c
@@ -133,7 +133,7 @@ depopulate:
*/
struct rchan_buf *relay_create_buf(struct rchan *chan)
{
- struct rchan_buf *buf = kcalloc(1, sizeof(struct rchan_buf), GFP_KERNEL);
+ struct rchan_buf *buf = kzalloc(sizeof(struct rchan_buf), GFP_KERNEL);
if (!buf)
return NULL;

diff --git a/fs/relayfs/relay.c b/fs/relayfs/relay.c
index 16446a1..d599295 100644
--- a/fs/relayfs/relay.c
+++ b/fs/relayfs/relay.c
@@ -248,7 +248,7 @@ struct rchan *relay_open(const char *bas
if (!(subbuf_size && n_subbufs))
return NULL;

- chan = kcalloc(1, sizeof(struct rchan), GFP_KERNEL);
+ chan = kzalloc(sizeof(struct rchan), GFP_KERNEL);
if (!chan)
return NULL;

---
0.99.9.GIT
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-11-09 02:07    [W:1.290 / U:0.016 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site