linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/2] bonding: delete two unused variables
@ 2011-06-09  2:51 Weiping Pan
  2011-06-09  2:51 ` [PATCH net-next 1/2] bonding: delete unused ad_timer Weiping Pan
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Weiping Pan @ 2011-06-09  2:51 UTC (permalink / raw)
  To: fubar, andy; +Cc: netdev, linux-kernel, Weiping Pan

Delete two unused variables in bonding.

Weiping Pan (2):
  bonding: delete unused ad_timer
  bonding: delete unused arp_mon_pt

 drivers/net/bonding/bond_3ad.h |    1 -
 drivers/net/bonding/bonding.h  |    1 -
 2 files changed, 0 insertions(+), 2 deletions(-)

-- 
1.7.4.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH net-next 1/2] bonding: delete unused ad_timer
  2011-06-09  2:51 [PATCH net-next 0/2] bonding: delete two unused variables Weiping Pan
@ 2011-06-09  2:51 ` Weiping Pan
  2011-06-09  2:51 ` [PATCH net-next 2/2] bonding: delete unused arp_mon_pt Weiping Pan
  2011-06-09  3:19 ` [PATCH net-next 0/2] bonding: delete two unused variables Américo Wang
  2 siblings, 0 replies; 5+ messages in thread
From: Weiping Pan @ 2011-06-09  2:51 UTC (permalink / raw)
  To: fubar, andy; +Cc: netdev, linux-kernel, Weiping Pan

Now we use agg_select_timer and ad_work.

Signed-off-by: Weiping Pan <panweiping3@gmail.com>
---
 drivers/net/bonding/bond_3ad.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/net/bonding/bond_3ad.h b/drivers/net/bonding/bond_3ad.h
index 0ee3f16..fb67185 100644
--- a/drivers/net/bonding/bond_3ad.h
+++ b/drivers/net/bonding/bond_3ad.h
@@ -257,7 +257,6 @@ struct ad_bond_info {
 	int lacp_fast;		/* whether fast periodic tx should be
 				 * requested
 				 */
-	struct timer_list ad_timer;
 };
 
 struct ad_slave_info {
-- 
1.7.4.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH net-next 2/2] bonding: delete unused arp_mon_pt
  2011-06-09  2:51 [PATCH net-next 0/2] bonding: delete two unused variables Weiping Pan
  2011-06-09  2:51 ` [PATCH net-next 1/2] bonding: delete unused ad_timer Weiping Pan
@ 2011-06-09  2:51 ` Weiping Pan
  2011-06-09  3:19 ` [PATCH net-next 0/2] bonding: delete two unused variables Américo Wang
  2 siblings, 0 replies; 5+ messages in thread
From: Weiping Pan @ 2011-06-09  2:51 UTC (permalink / raw)
  To: fubar, andy; +Cc: netdev, linux-kernel, Weiping Pan

Now all received packets are handled by bond_handle_frame,
arp_mon_pt isn't used any more.

Signed-off-by: Weiping Pan <panweiping3@gmail.com>
---
 drivers/net/bonding/bonding.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/net/bonding/bonding.h b/drivers/net/bonding/bonding.h
index ea1d005..382903f 100644
--- a/drivers/net/bonding/bonding.h
+++ b/drivers/net/bonding/bonding.h
@@ -240,7 +240,6 @@ struct bonding {
 	struct   bond_params params;
 	struct   list_head vlan_list;
 	struct   vlan_group *vlgrp;
-	struct   packet_type arp_mon_pt;
 	struct   workqueue_struct *wq;
 	struct   delayed_work mii_work;
 	struct   delayed_work arp_work;
-- 
1.7.4.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next 0/2] bonding: delete two unused variables
  2011-06-09  2:51 [PATCH net-next 0/2] bonding: delete two unused variables Weiping Pan
  2011-06-09  2:51 ` [PATCH net-next 1/2] bonding: delete unused ad_timer Weiping Pan
  2011-06-09  2:51 ` [PATCH net-next 2/2] bonding: delete unused arp_mon_pt Weiping Pan
@ 2011-06-09  3:19 ` Américo Wang
  2011-06-09  7:23   ` WeipingPan
  2 siblings, 1 reply; 5+ messages in thread
From: Américo Wang @ 2011-06-09  3:19 UTC (permalink / raw)
  To: Weiping Pan; +Cc: fubar, andy, netdev, linux-kernel

On Thu, Jun 9, 2011 at 10:51 AM, Weiping Pan <panweiping3@gmail.com> wrote:
> Delete two unused variables in bonding.
>
> Weiping Pan (2):
>  bonding: delete unused ad_timer
>  bonding: delete unused arp_mon_pt
>

Both look good to me,

Reviewed-by: WANG Cong <xiyou.wangcong@gmail.com>

Thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next 0/2] bonding: delete two unused variables
  2011-06-09  3:19 ` [PATCH net-next 0/2] bonding: delete two unused variables Américo Wang
@ 2011-06-09  7:23   ` WeipingPan
  0 siblings, 0 replies; 5+ messages in thread
From: WeipingPan @ 2011-06-09  7:23 UTC (permalink / raw)
  To: Américo Wang; +Cc: fubar, andy, netdev, linux-kernel

On 06/09/2011 11:19 AM, Américo Wang wrote:
> On Thu, Jun 9, 2011 at 10:51 AM, Weiping Pan<panweiping3@gmail.com>  wrote:
>> Delete two unused variables in bonding.
>>
>> Weiping Pan (2):
>>   bonding: delete unused ad_timer
>>   bonding: delete unused arp_mon_pt
>>
> Both look good to me,
>
> Reviewed-by: WANG Cong<xiyou.wangcong@gmail.com>
>
> Thanks.
thanks,
But I move these two patches into another patchset,
the title is "[PATCH v4 net-next 0/5] bonding:use latest lacp_rate and 
ad_select and delete unused ad_timer and arp_mon_pt"

Hope it will be convenient to be reviewed and merged, so forget these 
two patches.

thanks
Weiping Pan

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-06-09  7:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-09  2:51 [PATCH net-next 0/2] bonding: delete two unused variables Weiping Pan
2011-06-09  2:51 ` [PATCH net-next 1/2] bonding: delete unused ad_timer Weiping Pan
2011-06-09  2:51 ` [PATCH net-next 2/2] bonding: delete unused arp_mon_pt Weiping Pan
2011-06-09  3:19 ` [PATCH net-next 0/2] bonding: delete two unused variables Américo Wang
2011-06-09  7:23   ` WeipingPan

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).