diff options
author | David Lamparter <equinox@diac24.net> | 2011-07-17 04:53:12 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-17 15:33:22 -0400 |
commit | 69ecca86da4890c13a5e29c51b4ac76a1a8a62c9 (patch) | |
tree | 3a0084284ef48af692f7471a5736b0099912a77a | |
parent | 178edcbc6b539dfc21062fed9bf31701a8952e1c (diff) |
net: vlan, qlcnic: make vlan_find_dev private
there is only one user of vlan_find_dev outside of the actual vlan code:
qlcnic uses it to iterate over some VLANs it knows.
let's just make vlan_find_dev private to the VLAN code and have the
iteration in qlcnic be a bit more direct. (a few rcu dereferences less
too)
Signed-off-by: David Lamparter <equinox@diac24.net>
Cc: Patrick McHardy <kaber@trash.net>
Cc: Amit Kumar Salecha <amit.salecha@qlogic.com>
Cc: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Cc: linux-driver@qlogic.com
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/qlcnic/qlcnic_main.c | 7 | ||||
-rw-r--r-- | include/linux/if_vlan.h | 11 | ||||
-rw-r--r-- | net/8021q/vlan.h | 12 |
3 files changed, 18 insertions, 12 deletions
diff --git a/drivers/net/qlcnic/qlcnic_main.c b/drivers/net/qlcnic/qlcnic_main.c index 006a693d49a7..3579229db4a9 100644 --- a/drivers/net/qlcnic/qlcnic_main.c +++ b/drivers/net/qlcnic/qlcnic_main.c | |||
@@ -4198,13 +4198,18 @@ static void | |||
4198 | qlcnic_restore_indev_addr(struct net_device *netdev, unsigned long event) | 4198 | qlcnic_restore_indev_addr(struct net_device *netdev, unsigned long event) |
4199 | { | 4199 | { |
4200 | struct qlcnic_adapter *adapter = netdev_priv(netdev); | 4200 | struct qlcnic_adapter *adapter = netdev_priv(netdev); |
4201 | struct vlan_group *grp; | ||
4201 | struct net_device *dev; | 4202 | struct net_device *dev; |
4202 | u16 vid; | 4203 | u16 vid; |
4203 | 4204 | ||
4204 | qlcnic_config_indev_addr(adapter, netdev, event); | 4205 | qlcnic_config_indev_addr(adapter, netdev, event); |
4205 | 4206 | ||
4207 | grp = rcu_dereference_rtnl(netdev->vlgrp); | ||
4208 | if (!grp) | ||
4209 | return; | ||
4210 | |||
4206 | for_each_set_bit(vid, adapter->vlans, VLAN_N_VID) { | 4211 | for_each_set_bit(vid, adapter->vlans, VLAN_N_VID) { |
4207 | dev = vlan_find_dev(netdev, vid); | 4212 | dev = vlan_group_get_device(grp, vid); |
4208 | if (!dev) | 4213 | if (!dev) |
4209 | continue; | 4214 | continue; |
4210 | qlcnic_config_indev_addr(adapter, dev, event); | 4215 | qlcnic_config_indev_addr(adapter, dev, event); |
diff --git a/include/linux/if_vlan.h b/include/linux/if_vlan.h index affa27380b72..bc03e40fd7fd 100644 --- a/include/linux/if_vlan.h +++ b/include/linux/if_vlan.h | |||
@@ -119,17 +119,6 @@ static inline int is_vlan_dev(struct net_device *dev) | |||
119 | #define vlan_tx_tag_get(__skb) ((__skb)->vlan_tci & ~VLAN_TAG_PRESENT) | 119 | #define vlan_tx_tag_get(__skb) ((__skb)->vlan_tci & ~VLAN_TAG_PRESENT) |
120 | 120 | ||
121 | #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) | 121 | #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) |
122 | /* Must be invoked with rcu_read_lock or with RTNL. */ | ||
123 | static inline struct net_device *vlan_find_dev(struct net_device *real_dev, | ||
124 | u16 vlan_id) | ||
125 | { | ||
126 | struct vlan_group *grp = rcu_dereference_rtnl(real_dev->vlgrp); | ||
127 | |||
128 | if (grp) | ||
129 | return vlan_group_get_device(grp, vlan_id); | ||
130 | |||
131 | return NULL; | ||
132 | } | ||
133 | 122 | ||
134 | extern struct net_device *vlan_dev_real_dev(const struct net_device *dev); | 123 | extern struct net_device *vlan_dev_real_dev(const struct net_device *dev); |
135 | extern u16 vlan_dev_vlan_id(const struct net_device *dev); | 124 | extern u16 vlan_dev_vlan_id(const struct net_device *dev); |
diff --git a/net/8021q/vlan.h b/net/8021q/vlan.h index 9da07e30d1a2..b132f542b44b 100644 --- a/net/8021q/vlan.h +++ b/net/8021q/vlan.h | |||
@@ -74,6 +74,18 @@ static inline struct vlan_dev_info *vlan_dev_info(const struct net_device *dev) | |||
74 | return netdev_priv(dev); | 74 | return netdev_priv(dev); |
75 | } | 75 | } |
76 | 76 | ||
77 | /* Must be invoked with rcu_read_lock or with RTNL. */ | ||
78 | static inline struct net_device *vlan_find_dev(struct net_device *real_dev, | ||
79 | u16 vlan_id) | ||
80 | { | ||
81 | struct vlan_group *grp = rcu_dereference_rtnl(real_dev->vlgrp); | ||
82 | |||
83 | if (grp) | ||
84 | return vlan_group_get_device(grp, vlan_id); | ||
85 | |||
86 | return NULL; | ||
87 | } | ||
88 | |||
77 | /* found in vlan_dev.c */ | 89 | /* found in vlan_dev.c */ |
78 | void vlan_dev_set_ingress_priority(const struct net_device *dev, | 90 | void vlan_dev_set_ingress_priority(const struct net_device *dev, |
79 | u32 skb_prio, u16 vlan_prio); | 91 | u32 skb_prio, u16 vlan_prio); |