Skip to content

Commit

Permalink
[PATCH] chelsio: use kzalloc
Browse files Browse the repository at this point in the history
Use kzalloc() in chelsio driver.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Stephen Hemminger authored and Jeff Garzik committed Dec 2, 2006
1 parent 86c27d2 commit cbee9f9
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions drivers/net/chelsio/sge.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,9 @@ static int alloc_rx_resources(struct sge *sge, struct sge_params *p)
goto err_no_mem;
memset(q->entries, 0, size);
size = sizeof(struct freelQ_ce) * q->size;
q->centries = kmalloc(size, GFP_KERNEL);
q->centries = kzalloc(size, GFP_KERNEL);
if (!q->centries)
goto err_no_mem;
memset(q->centries, 0, size);
}

/*
Expand Down Expand Up @@ -463,10 +462,9 @@ static int alloc_tx_resources(struct sge *sge, struct sge_params *p)
goto err_no_mem;
memset(q->entries, 0, size);
size = sizeof(struct cmdQ_ce) * q->size;
q->centries = kmalloc(size, GFP_KERNEL);
q->centries = kzalloc(size, GFP_KERNEL);
if (!q->centries)
goto err_no_mem;
memset(q->centries, 0, size);
}

/*
Expand Down Expand Up @@ -1635,11 +1633,10 @@ static void espibug_workaround(void *data)
struct sge * __devinit t1_sge_create(struct adapter *adapter,
struct sge_params *p)
{
struct sge *sge = kmalloc(sizeof(*sge), GFP_KERNEL);
struct sge *sge = kzalloc(sizeof(*sge), GFP_KERNEL);

if (!sge)
return NULL;
memset(sge, 0, sizeof(*sge));

sge->adapter = adapter;
sge->netdev = adapter->port[0].dev;
Expand Down

0 comments on commit cbee9f9

Please sign in to comment.