Xin Long
2021-Nov-24 19:39 UTC
[Bridge] [PATCH net-next] bridge: use __set_bit in __br_vlan_set_default_pvid
The same optimization as the one in commit cc0be1ad686f ("net: bridge: Slightly optimize 'find_portno()'") is needed for the 'changed' bitmap in __br_vlan_set_default_pvid(). Signed-off-by: Xin Long <lucien.xin at gmail.com> --- net/bridge/br_vlan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/bridge/br_vlan.c b/net/bridge/br_vlan.c index 49e105e0a447..84ba456a78cc 100644 --- a/net/bridge/br_vlan.c +++ b/net/bridge/br_vlan.c @@ -1063,7 +1063,7 @@ int __br_vlan_set_default_pvid(struct net_bridge *br, u16 pvid, if (br_vlan_delete(br, old_pvid)) br_vlan_notify(br, NULL, old_pvid, 0, RTM_DELVLAN); br_vlan_notify(br, NULL, pvid, 0, RTM_NEWVLAN); - set_bit(0, changed); + __set_bit(0, changed); } list_for_each_entry(p, &br->port_list, list) { @@ -1085,7 +1085,7 @@ int __br_vlan_set_default_pvid(struct net_bridge *br, u16 pvid, if (nbp_vlan_delete(p, old_pvid)) br_vlan_notify(br, p, old_pvid, 0, RTM_DELVLAN); br_vlan_notify(p->br, p, pvid, 0, RTM_NEWVLAN); - set_bit(p->port_no, changed); + __set_bit(p->port_no, changed); } br->default_pvid = pvid; -- 2.27.0
patchwork-bot+netdevbpf at kernel.org
2021-Nov-27 00:50 UTC
[Bridge] [PATCH net-next] bridge: use __set_bit in __br_vlan_set_default_pvid
Hello: This patch was applied to netdev/net-next.git (master) by Jakub Kicinski <kuba at kernel.org>: On Wed, 24 Nov 2021 14:39:33 -0500 you wrote:> The same optimization as the one in commit cc0be1ad686f ("net: > bridge: Slightly optimize 'find_portno()'") is needed for the > 'changed' bitmap in __br_vlan_set_default_pvid(). > > Signed-off-by: Xin Long <lucien.xin at gmail.com> > --- > net/bridge/br_vlan.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-)Here is the summary with links: - [net-next] bridge: use __set_bit in __br_vlan_set_default_pvid https://git.kernel.org/netdev/net-next/c/442b03c32ca1 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html