diff options
author | Patrick McHardy <kaber@trash.net> | 2008-07-06 00:26:27 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-06 00:26:27 -0400 |
commit | b3ce0325f2bf1bb737cb8fc7c349ce8fefdd9e40 (patch) | |
tree | f2925e18555561b528b781c535c96bdbc0c809a9 /net/8021q/vlan.c | |
parent | eca9ebac651f774d8b10fce7c5d173c3c3d3394f (diff) |
vlan: Change vlan_dev_set_vlan_flag() to handle multiple flags at once
Change vlan_dev_set_vlan_flag() to handle multiple flags at once and
rename to vlan_dev_change_flags(). This allows to to use it from the
netlink interface, which in turn allows to handle necessary adjustments
when changing flags centrally.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q/vlan.c')
-rw-r--r-- | net/8021q/vlan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index ab2225da0ee2..b591bfca1ab2 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c | |||
@@ -591,9 +591,9 @@ static int vlan_ioctl_handler(struct net *net, void __user *arg) | |||
591 | err = -EPERM; | 591 | err = -EPERM; |
592 | if (!capable(CAP_NET_ADMIN)) | 592 | if (!capable(CAP_NET_ADMIN)) |
593 | break; | 593 | break; |
594 | err = vlan_dev_set_vlan_flag(dev, | 594 | err = vlan_dev_change_flags(dev, |
595 | args.u.flag, | 595 | args.vlan_qos ? args.u.flag : 0, |
596 | args.vlan_qos); | 596 | args.u.flag); |
597 | break; | 597 | break; |
598 | 598 | ||
599 | case SET_VLAN_NAME_TYPE_CMD: | 599 | case SET_VLAN_NAME_TYPE_CMD: |