dsa: remove unused net_device arg from handlers
authorFlorian Westphal <fw@strlen.de>
Thu, 17 Aug 2017 14:47:00 +0000 (16:47 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 21 Aug 2017 17:39:11 +0000 (10:39 -0700)
compile tested only, but saw no warnings/errors with
allmodconfig build.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/dsa.h
net/dsa/dsa.c
net/dsa/tag_brcm.c
net/dsa/tag_dsa.c
net/dsa/tag_edsa.c
net/dsa/tag_ksz.c
net/dsa/tag_lan9303.c
net/dsa/tag_mtk.c
net/dsa/tag_qca.c
net/dsa/tag_trailer.c

index 7f46b521313e51fdd032bd957f386d704c30e2c8..398ca8d70ccd07282f8084bc6e92a461466b9b59 100644 (file)
@@ -104,8 +104,7 @@ struct packet_type;
 struct dsa_device_ops {
        struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev);
        struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev,
-                              struct packet_type *pt,
-                              struct net_device *orig_dev);
+                              struct packet_type *pt);
        int (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
                            int *offset);
 };
@@ -134,8 +133,7 @@ struct dsa_switch_tree {
        /* Copy of tag_ops->rcv for faster access in hot path */
        struct sk_buff *        (*rcv)(struct sk_buff *skb,
                                       struct net_device *dev,
-                                      struct packet_type *pt,
-                                      struct net_device *orig_dev);
+                                      struct packet_type *pt);
 
        /*
         * The switch port to which the CPU is attached.
index 99e38af85fc5f75f720a5639358755df58e9d204..03c58b0eb082a5e5c125e2184bb29c80023cf017 100644 (file)
@@ -186,7 +186,7 @@ struct net_device *dsa_dev_to_net_device(struct device *dev)
 EXPORT_SYMBOL_GPL(dsa_dev_to_net_device);
 
 static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
-                         struct packet_type *pt, struct net_device *orig_dev)
+                         struct packet_type *pt, struct net_device *unused)
 {
        struct dsa_switch_tree *dst = dev->dsa_ptr;
        struct sk_buff *nskb = NULL;
@@ -202,7 +202,7 @@ static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
        if (!skb)
                return 0;
 
-       nskb = dst->rcv(skb, dev, pt, orig_dev);
+       nskb = dst->rcv(skb, dev, pt);
        if (!nskb) {
                kfree_skb(skb);
                return 0;
index c697d981517744fbc523d3bd0e3b8204a3a427f8..de74c3f778182f91ea29a065d207a2ad22bf5c06 100644 (file)
@@ -89,8 +89,7 @@ static struct sk_buff *brcm_tag_xmit(struct sk_buff *skb, struct net_device *dev
 }
 
 static struct sk_buff *brcm_tag_rcv(struct sk_buff *skb, struct net_device *dev,
-                                   struct packet_type *pt,
-                                   struct net_device *orig_dev)
+                                   struct packet_type *pt)
 {
        struct dsa_switch_tree *dst = dev->dsa_ptr;
        struct dsa_port *cpu_dp = dsa_get_cpu_port(dst);
index 12867a4b458f17259d8fb89781b56b92a494d09d..fbf9ca954773d1b0b616f9e3f2ef2f70a1370e86 100644 (file)
@@ -65,8 +65,7 @@ static struct sk_buff *dsa_xmit(struct sk_buff *skb, struct net_device *dev)
 }
 
 static struct sk_buff *dsa_rcv(struct sk_buff *skb, struct net_device *dev,
-                              struct packet_type *pt,
-                              struct net_device *orig_dev)
+                              struct packet_type *pt)
 {
        struct dsa_switch_tree *dst = dev->dsa_ptr;
        struct dsa_switch *ds;
index 67a9d26f9075072c906b9a15bf9747d132eeafb4..76367ba1b2e2433466fb56040e775637a6b41a8f 100644 (file)
@@ -78,8 +78,7 @@ static struct sk_buff *edsa_xmit(struct sk_buff *skb, struct net_device *dev)
 }
 
 static struct sk_buff *edsa_rcv(struct sk_buff *skb, struct net_device *dev,
-                               struct packet_type *pt,
-                               struct net_device *orig_dev)
+                               struct packet_type *pt)
 {
        struct dsa_switch_tree *dst = dev->dsa_ptr;
        struct dsa_switch *ds;
index de66ca8e620177693e55b54492404d8d3ee52197..17f30675c15cee18642642334120b3f03eb09183 100644 (file)
@@ -76,8 +76,7 @@ static struct sk_buff *ksz_xmit(struct sk_buff *skb, struct net_device *dev)
 }
 
 static struct sk_buff *ksz_rcv(struct sk_buff *skb, struct net_device *dev,
-                              struct packet_type *pt,
-                              struct net_device *orig_dev)
+                              struct packet_type *pt)
 {
        struct dsa_switch_tree *dst = dev->dsa_ptr;
        struct dsa_port *cpu_dp = dsa_get_cpu_port(dst);
index e23e7635fa00eb8a42cce49f803ed7ba8f4939e2..0b9826105e421b77a22f77b7d8d7686655580ddb 100644 (file)
@@ -68,7 +68,7 @@ static struct sk_buff *lan9303_xmit(struct sk_buff *skb, struct net_device *dev)
 }
 
 static struct sk_buff *lan9303_rcv(struct sk_buff *skb, struct net_device *dev,
-                       struct packet_type *pt, struct net_device *orig_dev)
+                       struct packet_type *pt)
 {
        u16 *lan9303_tag;
        struct dsa_switch_tree *dst = dev->dsa_ptr;
index 02163c045a96ac639891931583585881eac08b2e..ec8ee5f43255e7d95ace5b44f3c04860bd0b8507 100644 (file)
@@ -44,8 +44,7 @@ static struct sk_buff *mtk_tag_xmit(struct sk_buff *skb,
 }
 
 static struct sk_buff *mtk_tag_rcv(struct sk_buff *skb, struct net_device *dev,
-                                  struct packet_type *pt,
-                                  struct net_device *orig_dev)
+                                  struct packet_type *pt)
 {
        struct dsa_switch_tree *dst = dev->dsa_ptr;
        struct dsa_switch *ds;
index 1867a3d11f280d8c345d57386acd3ef357833b19..1d4c70711c0f456e0bcb6f970954e3f1f45dc9b3 100644 (file)
@@ -63,8 +63,7 @@ static struct sk_buff *qca_tag_xmit(struct sk_buff *skb, struct net_device *dev)
 }
 
 static struct sk_buff *qca_tag_rcv(struct sk_buff *skb, struct net_device *dev,
-                                  struct packet_type *pt,
-                                  struct net_device *orig_dev)
+                                  struct packet_type *pt)
 {
        struct dsa_switch_tree *dst = dev->dsa_ptr;
        struct dsa_port *cpu_dp = dsa_get_cpu_port(dst);
index b09e56214005c7cf9e257eb777882b234a2d6f18..8707157dea32ee88b77a306f9a5c3b4342bb0c1e 100644 (file)
@@ -56,8 +56,7 @@ static struct sk_buff *trailer_xmit(struct sk_buff *skb, struct net_device *dev)
 }
 
 static struct sk_buff *trailer_rcv(struct sk_buff *skb, struct net_device *dev,
-                                  struct packet_type *pt,
-                                  struct net_device *orig_dev)
+                                  struct packet_type *pt)
 {
        struct dsa_switch_tree *dst = dev->dsa_ptr;
        struct dsa_port *cpu_dp = dsa_get_cpu_port(dst);