提交 782f7956 编写于 作者: V vignesh babu 提交者: David S. Miller

[ATM]: Replacing kmalloc/memset combination with kzalloc.

Signed-off-by: Nvignesh babu <vignesh.babu@wipro.com>
Signed-off-by: Nchas williams <chas@cmf.nrl.navy.mil>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 0929c2dd
...@@ -292,13 +292,12 @@ static int atm_tc_change(struct Qdisc *sch, u32 classid, u32 parent, ...@@ -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); 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); DPRINTK("atm_tc_change: flow %p\n", flow);
if (!flow) { if (!flow) {
error = -ENOBUFS; error = -ENOBUFS;
goto err_out; goto err_out;
} }
memset(flow, 0, sizeof(*flow));
flow->filter_list = NULL; flow->filter_list = NULL;
if (!(flow->q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops, classid))) if (!(flow->q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops, classid)))
flow->q = &noop_qdisc; flow->q = &noop_qdisc;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册