From: Andrew Morton That one wasn't needed. Cc: Joe Jin Signed-off-by: Andrew Morton --- drivers/net/bonding/bond_alb.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/bonding/bond_alb.c~bonding-replace-kmalloc-memset-pairs-with-the-appropriate-kzalloc-calls-fix drivers/net/bonding/bond_alb.c --- a/drivers/net/bonding/bond_alb.c~bonding-replace-kmalloc-memset-pairs-with-the-appropriate-kzalloc-calls-fix +++ a/drivers/net/bonding/bond_alb.c @@ -786,7 +786,7 @@ static int rlb_initialize(struct bonding spin_lock_init(&(bond_info->rx_hashtbl_lock)); - new_hashtbl = kzalloc(size, GFP_KERNEL); + new_hashtbl = kmalloc(size, GFP_KERNEL); if (!new_hashtbl) { printk(KERN_ERR DRV_NAME ": %s: Error: Failed to allocate RLB hash table\n", _