summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorMariusz Kozlowski <m.kozlowski@tuxland.pl>2007-07-31 14:06:45 -0700
committerDavid S. Miller <davem@davemloft.net>2007-07-31 14:06:45 -0700
commit376407039c26caacc3e433437d25516ba8f3adc9 (patch)
treea00e2680ca45584415c692d0aed3346c2b77ba3c /net
parentf87966541ef15d28572c8a3caaec359801625228 (diff)
downloadlinux-3.10-376407039c26caacc3e433437d25516ba8f3adc9.tar.gz
linux-3.10-376407039c26caacc3e433437d25516ba8f3adc9.tar.bz2
linux-3.10-376407039c26caacc3e433437d25516ba8f3adc9.zip
[IPV4] ip_options.c: kmalloc + memset conversion to kzalloc
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/ip_options.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c
index 251346828cb..2f14745a9e1 100644
--- a/net/ipv4/ip_options.c
+++ b/net/ipv4/ip_options.c
@@ -513,11 +513,8 @@ void ip_options_undo(struct ip_options * opt)
static struct ip_options *ip_options_get_alloc(const int optlen)
{
- struct ip_options *opt = kmalloc(sizeof(*opt) + ((optlen + 3) & ~3),
- GFP_KERNEL);
- if (opt)
- memset(opt, 0, sizeof(*opt));
- return opt;
+ return kzalloc(sizeof(struct ip_options) + ((optlen + 3) & ~3),
+ GFP_KERNEL);
}
static int ip_options_get_finish(struct ip_options **optp,