Instead of checking that the dsa_switch_tree rcv pointer is not NULL, add a uses_hw_tag boolean to net_device to explicit whether it uses hardware inserted tag or not.
Signed-off-by: Vivien Didelot <vivien.dide...@savoirfairelinux.com> --- include/linux/netdevice.h | 6 ++++-- include/net/dsa.h | 5 ----- net/dsa/dsa.c | 1 + 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index b945078..1986a22 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1417,12 +1417,13 @@ enum netdev_priv_flags { * @promiscuity: Number of times, the NIC is told to work in * Promiscuous mode, if it becomes 0 the NIC will * exit from working in Promiscuous mode * @allmulti: Counter, enables or disables allmulticast mode * * @vlan_info: VLAN info + * @uses_hw_tag: Whether the device uses hardware inserted tag or not * @dsa_ptr: dsa specific data * @tipc_ptr: TIPC specific data * @atalk_ptr: AppleTalk link * @ip_ptr: IPv4 specific data * @dn_ptr: DECnet specific data * @ip6_ptr: IPv6 specific data @@ -1635,12 +1636,13 @@ struct net_device { /* Protocol specific pointers */ #if IS_ENABLED(CONFIG_VLAN_8021Q) struct vlan_info __rcu *vlan_info; #endif #if IS_ENABLED(CONFIG_NET_DSA) + bool uses_hw_tag; struct dsa_switch_tree *dsa_ptr; #endif #if IS_ENABLED(CONFIG_TIPC) struct tipc_bearer __rcu *tipc_ptr; #endif void *atalk_ptr; @@ -1886,14 +1888,14 @@ void dev_net_set(struct net_device *dev, struct net *net) write_pnet(&dev->nd_net, net); } static inline bool netdev_uses_dsa(struct net_device *dev) { #if IS_ENABLED(CONFIG_NET_DSA) - if (dev->dsa_ptr != NULL) - return dsa_uses_tagged_protocol(dev->dsa_ptr); + if (dev->uses_hw_tag) + return true; #endif return false; } /** * netdev_priv - access network device private data diff --git a/include/net/dsa.h b/include/net/dsa.h index b34d812..3e9eb6c 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h @@ -330,12 +330,7 @@ void unregister_switch_driver(struct dsa_switch_driver *type); struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev); static inline void *ds_to_priv(struct dsa_switch *ds) { return (void *)(ds + 1); } - -static inline bool dsa_uses_tagged_protocol(struct dsa_switch_tree *dst) -{ - return dst->rcv != NULL; -} #endif diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c index c59fa5d..623065f 100644 --- a/net/dsa/dsa.c +++ b/net/dsa/dsa.c @@ -831,12 +831,13 @@ static void dsa_setup_dst(struct dsa_switch_tree *dst, struct net_device *dev, * If we use a tagging format that doesn't have an ethertype * field, make sure that all packets from this point on get * sent to the tag format's receive function. */ wmb(); dev->dsa_ptr = (void *)dst; + dev->uses_hw_tag = dst->tag_protocol != DSA_TAG_PROTO_NONE; if (dst->link_poll_needed) { INIT_WORK(&dst->link_poll_work, dsa_link_poll_work); init_timer(&dst->link_poll_timer); dst->link_poll_timer.data = (unsigned long)dst; dst->link_poll_timer.function = dsa_link_poll_timer; -- 2.6.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/