LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] bonding: Replace kmalloc() + memset() pairs with the appropriate kzalloc() calls
@ 2007-01-12 2:28 joe jin
2007-01-12 7:35 ` Pekka Enberg
0 siblings, 1 reply; 3+ messages in thread
From: joe jin @ 2007-01-12 2:28 UTC (permalink / raw)
To: linux-kernel; +Cc: Andrew Morton, joe.jin
This patch replace kmalloc() + memset() pairs with the appropriate
kzalloc() calls.
Signed-off-by: Joe Jin <lkmaillist@gmail.com>
--
diff -urNp old/drivers/net/bonding/bond_alb.c
new/drivers/net/bonding/bond_alb.c
--- old/drivers/net/bonding/bond_alb.c 2006-11-30 05:57:37.000000000
+0800
+++ new/drivers/net/bonding/bond_alb.c 2007-01-09 13:13:16.000000000
+0800
@@ -184,7 +184,7 @@ static int tlb_initialize(struct bonding
spin_lock_init(&(bond_info->tx_hashtbl_lock));
- new_hashtbl = kmalloc(size, GFP_KERNEL);
+ new_hashtbl = kzalloc(size, GFP_KERNEL);
if (!new_hashtbl) {
printk(KERN_ERR DRV_NAME
": %s: Error: Failed to allocate TLB hash table\n",
@@ -195,8 +195,6 @@ static int tlb_initialize(struct bonding
bond_info->tx_hashtbl = new_hashtbl;
- memset(bond_info->tx_hashtbl, 0, size);
-
for (i = 0; i < TLB_HASH_TABLE_SIZE; i++) {
tlb_init_table_entry(&bond_info->tx_hashtbl[i], 1);
}
@@ -788,7 +786,7 @@ static int rlb_initialize(struct bonding
spin_lock_init(&(bond_info->rx_hashtbl_lock));
- new_hashtbl = kmalloc(size, GFP_KERNEL);
+ new_hashtbl = kzalloc(size, GFP_KERNEL);
if (!new_hashtbl) {
printk(KERN_ERR DRV_NAME
": %s: Error: Failed to allocate RLB hash table\n",
diff -urNp old/drivers/net/bonding/bond_main.c
new/drivers/net/bonding/bond_main.c
--- old/drivers/net/bonding/bond_main.c 2006-11-30 05:57:37.000000000
+0800
+++ new/drivers/net/bonding/bond_main.c 2007-01-09 13:14:20.000000000
+0800
@@ -1336,14 +1336,12 @@ int bond_enslave(struct net_device *bond
goto err_undo_flags;
}
- new_slave = kmalloc(sizeof(struct slave), GFP_KERNEL);
+ new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
if (!new_slave) {
res = -ENOMEM;
goto err_undo_flags;
}
- memset(new_slave, 0, sizeof(struct slave));
-
/* save slave's original flags before calling
* netdev_set_master and dev_open
*/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] bonding: Replace kmalloc() + memset() pairs with the appropriate kzalloc() calls
2007-01-12 2:28 [PATCH] bonding: Replace kmalloc() + memset() pairs with the appropriate kzalloc() calls joe jin
@ 2007-01-12 7:35 ` Pekka Enberg
2007-01-15 2:49 ` joe jin
0 siblings, 1 reply; 3+ messages in thread
From: Pekka Enberg @ 2007-01-12 7:35 UTC (permalink / raw)
To: joe jin; +Cc: linux-kernel, Andrew Morton
Hi Joe,
On 1/12/07, joe jin <joe.jin@oracle.com> wrote:
> @@ -788,7 +786,7 @@ static int rlb_initialize(struct bonding
>
> spin_lock_init(&(bond_info->rx_hashtbl_lock));
>
> - new_hashtbl = kmalloc(size, GFP_KERNEL);
> + new_hashtbl = kzalloc(size, GFP_KERNEL);
> if (!new_hashtbl) {
> printk(KERN_ERR DRV_NAME
> ": %s: Error: Failed to allocate RLB hash table\n",
You forgot to remove the memset here.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] bonding: Replace kmalloc() + memset() pairs with the appropriate kzalloc() calls
2007-01-12 7:35 ` Pekka Enberg
@ 2007-01-15 2:49 ` joe jin
0 siblings, 0 replies; 3+ messages in thread
From: joe jin @ 2007-01-15 2:49 UTC (permalink / raw)
To: Pekka Enberg; +Cc: linux-kernel, Andrew Morton
> Hi Joe,
>
> On 1/12/07, joe jin <joe.jin@oracle.com> wrote:
> > @@ -788,7 +786,7 @@ static int rlb_initialize(struct bonding
> >
> > spin_lock_init(&(bond_info->rx_hashtbl_lock));
> >
> > - new_hashtbl = kmalloc(size, GFP_KERNEL);
> > + new_hashtbl = kzalloc(size, GFP_KERNEL);
> > if (!new_hashtbl) {
> > printk(KERN_ERR DRV_NAME
> > ": %s: Error: Failed to allocate RLB hash table\n",
>
> You forgot to remove the memset here.
Here is not a memset :)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-01-15 2:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-12 2:28 [PATCH] bonding: Replace kmalloc() + memset() pairs with the appropriate kzalloc() calls joe jin
2007-01-12 7:35 ` Pekka Enberg
2007-01-15 2:49 ` joe jin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).