net: dsa: Do not check for NULL dst in tag parsers
authorFlorian Fainelli <f.fainelli@gmail.com>
Sat, 8 Apr 2017 15:55:21 +0000 (08:55 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 8 Apr 2017 20:49:36 +0000 (13:49 -0700)
dsa_switch_rcv() already tests for dst == NULL, so there is no need to duplicate
the same check within the tag receive functions.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dsa/tag_brcm.c
net/dsa/tag_dsa.c
net/dsa/tag_edsa.c
net/dsa/tag_mtk.c
net/dsa/tag_qca.c
net/dsa/tag_trailer.c

index e2ed6cf..68d4fee 100644 (file)
@@ -100,9 +100,6 @@ static int brcm_tag_rcv(struct sk_buff *skb, struct net_device *dev,
        int source_port;
        u8 *brcm_tag;
 
-       if (unlikely(dst == NULL))
-               goto out_drop;
-
        ds = dst->cpu_switch;
 
        skb = skb_unshare(skb, GFP_ATOMIC);
index e42ba90..377569c 100644 (file)
@@ -77,9 +77,6 @@ static int dsa_rcv(struct sk_buff *skb, struct net_device *dev,
        int source_device;
        int source_port;
 
-       if (unlikely(dst == NULL))
-               goto out_drop;
-
        skb = skb_unshare(skb, GFP_ATOMIC);
        if (skb == NULL)
                goto out;
index 6a9b7a9..30520ff 100644 (file)
@@ -90,9 +90,6 @@ static int edsa_rcv(struct sk_buff *skb, struct net_device *dev,
        int source_device;
        int source_port;
 
-       if (unlikely(dst == NULL))
-               goto out_drop;
-
        skb = skb_unshare(skb, GFP_ATOMIC);
        if (skb == NULL)
                goto out;
index 44ae635..836c311 100644 (file)
@@ -55,9 +55,6 @@ static int mtk_tag_rcv(struct sk_buff *skb, struct net_device *dev,
        int port;
        __be16 *phdr, hdr;
 
-       if (unlikely(!dst))
-               goto out_drop;
-
        skb = skb_unshare(skb, GFP_ATOMIC);
        if (!skb)
                goto out;
index 4e0dad7..6579d6d 100644 (file)
@@ -75,9 +75,6 @@ static int qca_tag_rcv(struct sk_buff *skb, struct net_device *dev,
        int port;
        __be16 *phdr, hdr;
 
-       if (unlikely(!dst))
-               goto out_drop;
-
        skb = skb_unshare(skb, GFP_ATOMIC);
        if (!skb)
                goto out;
index 74c9485..f5c764e 100644 (file)
@@ -66,8 +66,6 @@ static int trailer_rcv(struct sk_buff *skb, struct net_device *dev,
        u8 *trailer;
        int source_port;
 
-       if (unlikely(dst == NULL))
-               goto out_drop;
        ds = dst->cpu_switch;
 
        skb = skb_unshare(skb, GFP_ATOMIC);