提交 476c609e 编写于 作者: J Julia Lawall 提交者: David S. Miller

drivers/net/vmxnet3: Use kzalloc

Use kzalloc rather than the combination of kmalloc and memset.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression x,size,flags;
statement S;
@@

-x = kmalloc(size,flags);
+x = kzalloc(size,flags);
 if (x == NULL) S
-memset(x, 0, size);
// </smpl>
Signed-off-by: NJulia Lawall <julia@diku.dk>
Signed-off-by: NBhavesh Davda <bhavesh@vmware.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 49afa55b
...@@ -1369,13 +1369,12 @@ vmxnet3_rq_create(struct vmxnet3_rx_queue *rq, struct vmxnet3_adapter *adapter) ...@@ -1369,13 +1369,12 @@ vmxnet3_rq_create(struct vmxnet3_rx_queue *rq, struct vmxnet3_adapter *adapter)
sz = sizeof(struct vmxnet3_rx_buf_info) * (rq->rx_ring[0].size + sz = sizeof(struct vmxnet3_rx_buf_info) * (rq->rx_ring[0].size +
rq->rx_ring[1].size); rq->rx_ring[1].size);
bi = kmalloc(sz, GFP_KERNEL); bi = kzalloc(sz, GFP_KERNEL);
if (!bi) { if (!bi) {
printk(KERN_ERR "%s: failed to allocate rx bufinfo\n", printk(KERN_ERR "%s: failed to allocate rx bufinfo\n",
adapter->netdev->name); adapter->netdev->name);
goto err; goto err;
} }
memset(bi, 0, sz);
rq->buf_info[0] = bi; rq->buf_info[0] = bi;
rq->buf_info[1] = bi + rq->rx_ring[0].size; rq->buf_info[1] = bi + rq->rx_ring[0].size;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册