diff options
author | vignesh babu <vignesh.babu@wipro.com> | 2007-07-16 18:30:36 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-07-18 01:46:51 -0700 |
commit | 782f7956891c95e54c5b008b24ebf9e82fd84796 (patch) | |
tree | cdc8bdad63ce56e7e6fec091127e65d0f7882831 /net/sched | |
parent | 0929c2dd83317813425b937fbc0041013b8685ff (diff) | |
download | linux-3.10-782f7956891c95e54c5b008b24ebf9e82fd84796.tar.gz linux-3.10-782f7956891c95e54c5b008b24ebf9e82fd84796.tar.bz2 linux-3.10-782f7956891c95e54c5b008b24ebf9e82fd84796.zip |
[ATM]: Replacing kmalloc/memset combination with kzalloc.
Signed-off-by: vignesh babu <vignesh.babu@wipro.com>
Signed-off-by: chas williams <chas@cmf.nrl.navy.mil>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_atm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sched/sch_atm.c b/net/sched/sch_atm.c index 417ec8fb7f1..ddc4f2c5437 100644 --- a/net/sched/sch_atm.c +++ b/net/sched/sch_atm.c @@ -292,13 +292,12 @@ static int atm_tc_change(struct Qdisc *sch, u32 classid, u32 parent, } } DPRINTK("atm_tc_change: new id %x\n", classid); - flow = kmalloc(sizeof(struct atm_flow_data) + hdr_len, GFP_KERNEL); + flow = kzalloc(sizeof(struct atm_flow_data) + hdr_len, GFP_KERNEL); DPRINTK("atm_tc_change: flow %p\n", flow); if (!flow) { error = -ENOBUFS; goto err_out; } - memset(flow, 0, sizeof(*flow)); flow->filter_list = NULL; if (!(flow->q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops, classid))) flow->q = &noop_qdisc; |