[PATCH] drivers/net/ehea - remove unnecessary memset after kzalloc

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Christoph Raisch <raisch@...>, Jan-Bernd Themann <themann@...>, Thomas Klein <tklein@...>
Cc: linux <linux-kernel@...>, netdev <netdev@...>, Jeff Garzik <jgarzik@...>, Christophe Jaillet <christophe.jaillet@...>
Date: Monday, May 12, 2008 - 5:38 pm

Signed-off-by: Joe Perches <joe@perches.com>

---

 drivers/net/ehea/ehea_main.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c
index f9bc21c..fd4be0d 100644
--- a/drivers/net/ehea/ehea_main.c
+++ b/drivers/net/ehea/ehea_main.c
@@ -2207,18 +2207,16 @@ static void ehea_vlan_rx_register(struct net_device *dev,
 	port->vgrp = grp;
 
 	cb1 = kzalloc(PAGE_SIZE, GFP_KERNEL);
 	if (!cb1) {
 		ehea_error("no mem for cb1");
 		goto out;
 	}
 
-	memset(cb1->vlan_filter, 0, sizeof(cb1->vlan_filter));
-
 	hret = ehea_h_modify_ehea_port(adapter->handle, port->logical_port_id,
 				       H_PORT_CB1, H_PORT_CB1_ALL, cb1);
 	if (hret != H_SUCCESS)
 		ehea_error("modify_ehea_port failed");
 
 	kfree(cb1);
 out:
 	return;


--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 1/1] infiniband/hw/nes/: avoid unnecessary memset, Christophe Jaillet, (Mon May 12, 5:35 pm)
[PATCH] drivers/net/ehea - remove unnecessary memset after k..., Joe Perches, (Mon May 12, 5:38 pm)
Re: [PATCH] drivers/net/ehea - remove unnecessary memset aft..., Jan-Bernd Themann, (Tue May 20, 9:53 am)