[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1214034861-1398-1-git-send-email-joonwpark81@gmail.com>
Date: Sat, 21 Jun 2008 00:54:21 -0700
From: Joonwoo Park <joonwpark81@...il.com>
To: Patrick McHardy <kaber@...sh.net>
Cc: netdev <netdev@...r.kernel.org>,
netfilter-devel <netfilter-devel@...r.kernel.org>,
Joonwoo Park <joonwpark81@...il.com>
Subject: [PATCH 7/8] textsearch: convert kmalloc + memset to kzalloc
Convert kmalloc + memset to kzalloc for alloc_ts_config
Signed-off-by: Joonwoo Park <joonwpark81@...il.com>
---
include/linux/textsearch.h | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/include/linux/textsearch.h b/include/linux/textsearch.h
index b6897f3..4341406 100644
--- a/include/linux/textsearch.h
+++ b/include/linux/textsearch.h
@@ -164,11 +164,10 @@ static inline struct ts_config *alloc_ts_config(size_t payload,
{
struct ts_config *conf;
- conf = kmalloc(TS_PRIV_ALIGN(sizeof(*conf)) + payload, gfp_mask);
+ conf = kzalloc(TS_PRIV_ALIGN(sizeof(*conf)) + payload, gfp_mask);
if (conf == NULL)
return ERR_PTR(-ENOMEM);
- memset(conf, 0, TS_PRIV_ALIGN(sizeof(*conf)) + payload);
return conf;
}
--
1.5.4.3
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists