projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8ed289
)
bridge: vlan: drop master_flags from __vlan_add
author
Nikolay Aleksandrov
<nikolay@cumulusnetworks.com>
Fri, 2 Oct 2015 13:05:12 +0000
(15:05 +0200)
committer
David S. Miller
<davem@davemloft.net>
Sun, 4 Oct 2015 23:43:49 +0000
(16:43 -0700)
There's only one user now and we can include the flag directly.
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/bridge/br_vlan.c
patch
|
blob
|
blame
|
history
diff --git
a/net/bridge/br_vlan.c
b/net/bridge/br_vlan.c
index 6e41fba47e978413330a585286a53fc0178c6a3b..2c1fdf94badcbc0cc483a6b8193c6f276f2723ac 100644
(file)
--- a/
net/bridge/br_vlan.c
+++ b/
net/bridge/br_vlan.c
@@
-212,8
+212,6
@@
static int __vlan_add(struct net_bridge_vlan *v, u16 flags)
}
if (p) {
- u16 master_flags = flags;
-
/* Add VLAN to the device filter if it is supported.
* This ensures tagged traffic enters the bridge when
* promiscuous mode is disabled by br_manage_promisc().
@@
-224,8
+222,8
@@
static int __vlan_add(struct net_bridge_vlan *v, u16 flags)
/* need to work on the master vlan too */
if (flags & BRIDGE_VLAN_INFO_MASTER) {
- master_flags |= BRIDGE_VLAN_INFO_BRENTRY;
-
err = br_vlan_add(br, v->vid, master_flags
);
+ err = br_vlan_add(br, v->vid, flags |
+
BRIDGE_VLAN_INFO_BRENTRY
);
if (err)
goto out_filt;
}