mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
[NET]: Conversions from kmalloc+memset to k(z|c)alloc.
Signed-off-by: Panagiotis Issaris <takis@issaris.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
a0ee7c70b2
commit
0da974f4f3
@@ -115,14 +115,12 @@ static struct lapb_cb *lapb_devtostruct(struct net_device *dev)
|
||||
*/
|
||||
static struct lapb_cb *lapb_create_cb(void)
|
||||
{
|
||||
struct lapb_cb *lapb = kmalloc(sizeof(*lapb), GFP_ATOMIC);
|
||||
struct lapb_cb *lapb = kzalloc(sizeof(*lapb), GFP_ATOMIC);
|
||||
|
||||
|
||||
if (!lapb)
|
||||
goto out;
|
||||
|
||||
memset(lapb, 0x00, sizeof(*lapb));
|
||||
|
||||
skb_queue_head_init(&lapb->write_queue);
|
||||
skb_queue_head_init(&lapb->ack_queue);
|
||||
|
||||
|
Reference in New Issue
Block a user