Wei Yongjun
2013-Mar-11 15:43 UTC
[Bridge] [PATCH -next] bridge: using for_each_set_bit_from to simplify the code
From: Wei Yongjun <yongjun_wei at trendmicro.com.cn> Using for_each_set_bit_from() to simplify the code. Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn> --- net/bridge/br_fdb.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/net/bridge/br_fdb.c b/net/bridge/br_fdb.c index b0812c9..48fe761 100644 --- a/net/bridge/br_fdb.c +++ b/net/bridge/br_fdb.c @@ -161,9 +161,7 @@ void br_fdb_change_mac_address(struct net_bridge *br, const u8 *newaddr) if (!pv) return; - for (vid = find_next_bit(pv->vlan_bitmap, BR_VLAN_BITMAP_LEN, vid); - vid < BR_VLAN_BITMAP_LEN; - vid = find_next_bit(pv->vlan_bitmap, BR_VLAN_BITMAP_LEN, vid+1)) { + for_each_set_bit_from(vid, pv->vlan_bitmap, BR_VLAN_BITMAP_LEN) { f = __br_fdb_get(br, br->dev->dev_addr, vid); if (f && f->is_local && !f->dst) fdb_delete(br, f);
David Miller
2013-Mar-12 12:15 UTC
[Bridge] [PATCH -next] bridge: using for_each_set_bit_from to simplify the code
From: Wei Yongjun <weiyj.lk at gmail.com> Date: Mon, 11 Mar 2013 23:43:48 +0800> From: Wei Yongjun <yongjun_wei at trendmicro.com.cn> > > Using for_each_set_bit_from() to simplify the code. > > Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn>Applied.
Apparently Analagous Threads
- [Bridge] [PATCH v10 net-next 00/12] VLAN filtering/VLAN aware bridge
- [PATCH -next] virtio_console: make local symbols static
- [PATCH -next] virtio_console: make local symbols static
- [PATCH] xen-pciback: fix error return code in pcistub_irq_handler_switch()
- [PATCH] xen-pciback: fix error return code in pcistub_irq_handler_switch()