net: dsa: remove the struct packet_type argument from dsa_device_ops::rcv()

No tagging driver uses this.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Vladimir Oltean 2021-07-31 17:14:32 +03:00 committed by David S. Miller
parent 35d7a6f1fb
commit 29a097b774
17 changed files with 25 additions and 49 deletions

View File

@ -79,13 +79,11 @@ enum dsa_tag_protocol {
DSA_TAG_PROTO_SJA1110 = DSA_TAG_PROTO_SJA1110_VALUE, DSA_TAG_PROTO_SJA1110 = DSA_TAG_PROTO_SJA1110_VALUE,
}; };
struct packet_type;
struct dsa_switch; struct dsa_switch;
struct dsa_device_ops { struct dsa_device_ops {
struct sk_buff *(*xmit)(struct sk_buff *skb, struct net_device *dev); 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 sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev);
struct packet_type *pt);
void (*flow_dissect)(const struct sk_buff *skb, __be16 *proto, void (*flow_dissect)(const struct sk_buff *skb, __be16 *proto,
int *offset); int *offset);
unsigned int needed_headroom; unsigned int needed_headroom;
@ -239,8 +237,7 @@ struct dsa_port {
/* Copies for faster access in master receive hot path */ /* Copies for faster access in master receive hot path */
struct dsa_switch_tree *dst; struct dsa_switch_tree *dst;
struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev, struct sk_buff *(*rcv)(struct sk_buff *skb, struct net_device *dev);
struct packet_type *pt);
enum { enum {
DSA_PORT_TYPE_UNUSED = 0, DSA_PORT_TYPE_UNUSED = 0,

View File

@ -238,7 +238,7 @@ static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
if (!skb) if (!skb)
return 0; return 0;
nskb = cpu_dp->rcv(skb, dev, pt); nskb = cpu_dp->rcv(skb, dev);
if (!nskb) { if (!nskb) {
kfree_skb(skb); kfree_skb(skb);
return 0; return 0;

View File

@ -44,8 +44,7 @@ static struct sk_buff *ar9331_tag_xmit(struct sk_buff *skb,
} }
static struct sk_buff *ar9331_tag_rcv(struct sk_buff *skb, static struct sk_buff *ar9331_tag_rcv(struct sk_buff *skb,
struct net_device *ndev, struct net_device *ndev)
struct packet_type *pt)
{ {
u8 ver, port; u8 ver, port;
u16 hdr; u16 hdr;

View File

@ -136,7 +136,6 @@ static struct sk_buff *brcm_tag_xmit_ll(struct sk_buff *skb,
*/ */
static struct sk_buff *brcm_tag_rcv_ll(struct sk_buff *skb, static struct sk_buff *brcm_tag_rcv_ll(struct sk_buff *skb,
struct net_device *dev, struct net_device *dev,
struct packet_type *pt,
unsigned int offset) unsigned int offset)
{ {
int source_port; int source_port;
@ -182,13 +181,12 @@ static struct sk_buff *brcm_tag_xmit(struct sk_buff *skb,
} }
static struct sk_buff *brcm_tag_rcv(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 sk_buff *nskb; struct sk_buff *nskb;
/* skb->data points to the EtherType, the tag is right before it */ /* skb->data points to the EtherType, the tag is right before it */
nskb = brcm_tag_rcv_ll(skb, dev, pt, 2); nskb = brcm_tag_rcv_ll(skb, dev, 2);
if (!nskb) if (!nskb)
return nskb; return nskb;
@ -251,8 +249,7 @@ static struct sk_buff *brcm_leg_tag_xmit(struct sk_buff *skb,
} }
static struct sk_buff *brcm_leg_tag_rcv(struct sk_buff *skb, static struct sk_buff *brcm_leg_tag_rcv(struct sk_buff *skb,
struct net_device *dev, struct net_device *dev)
struct packet_type *pt)
{ {
int source_port; int source_port;
u8 *brcm_tag; u8 *brcm_tag;
@ -302,11 +299,10 @@ static struct sk_buff *brcm_tag_xmit_prepend(struct sk_buff *skb,
} }
static struct sk_buff *brcm_tag_rcv_prepend(struct sk_buff *skb, static struct sk_buff *brcm_tag_rcv_prepend(struct sk_buff *skb,
struct net_device *dev, struct net_device *dev)
struct packet_type *pt)
{ {
/* tag is prepended to the packet */ /* tag is prepended to the packet */
return brcm_tag_rcv_ll(skb, dev, pt, ETH_HLEN); return brcm_tag_rcv_ll(skb, dev, ETH_HLEN);
} }
static const struct dsa_device_ops brcm_prepend_netdev_ops = { static const struct dsa_device_ops brcm_prepend_netdev_ops = {

View File

@ -332,8 +332,7 @@ static struct sk_buff *dsa_xmit(struct sk_buff *skb, struct net_device *dev)
return dsa_xmit_ll(skb, dev, 0); return dsa_xmit_ll(skb, dev, 0);
} }
static struct sk_buff *dsa_rcv(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)
{ {
if (unlikely(!pskb_may_pull(skb, DSA_HLEN))) if (unlikely(!pskb_may_pull(skb, DSA_HLEN)))
return NULL; return NULL;
@ -373,8 +372,7 @@ static struct sk_buff *edsa_xmit(struct sk_buff *skb, struct net_device *dev)
return skb; return skb;
} }
static struct sk_buff *edsa_rcv(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)
{ {
if (unlikely(!pskb_may_pull(skb, EDSA_HLEN))) if (unlikely(!pskb_may_pull(skb, EDSA_HLEN)))
return NULL; return NULL;

View File

@ -75,8 +75,7 @@ static struct sk_buff *gswip_tag_xmit(struct sk_buff *skb,
} }
static struct sk_buff *gswip_tag_rcv(struct sk_buff *skb, static struct sk_buff *gswip_tag_rcv(struct sk_buff *skb,
struct net_device *dev, struct net_device *dev)
struct packet_type *pt)
{ {
int port; int port;
u8 *gswip_tag; u8 *gswip_tag;

View File

@ -29,8 +29,7 @@ static struct sk_buff *hellcreek_xmit(struct sk_buff *skb,
} }
static struct sk_buff *hellcreek_rcv(struct sk_buff *skb, static struct sk_buff *hellcreek_rcv(struct sk_buff *skb,
struct net_device *dev, struct net_device *dev)
struct packet_type *pt)
{ {
/* Tag decoding */ /* Tag decoding */
u8 *tag = skb_tail_pointer(skb) - HELLCREEK_TAG_LEN; u8 *tag = skb_tail_pointer(skb) - HELLCREEK_TAG_LEN;

View File

@ -67,8 +67,7 @@ static struct sk_buff *ksz8795_xmit(struct sk_buff *skb, struct net_device *dev)
return skb; return skb;
} }
static struct sk_buff *ksz8795_rcv(struct sk_buff *skb, struct net_device *dev, static struct sk_buff *ksz8795_rcv(struct sk_buff *skb, struct net_device *dev)
struct packet_type *pt)
{ {
u8 *tag = skb_tail_pointer(skb) - KSZ_EGRESS_TAG_LEN; u8 *tag = skb_tail_pointer(skb) - KSZ_EGRESS_TAG_LEN;
@ -134,8 +133,7 @@ static struct sk_buff *ksz9477_xmit(struct sk_buff *skb,
return skb; return skb;
} }
static struct sk_buff *ksz9477_rcv(struct sk_buff *skb, struct net_device *dev, static struct sk_buff *ksz9477_rcv(struct sk_buff *skb, struct net_device *dev)
struct packet_type *pt)
{ {
/* Tag decoding */ /* Tag decoding */
u8 *tag = skb_tail_pointer(skb) - KSZ_EGRESS_TAG_LEN; u8 *tag = skb_tail_pointer(skb) - KSZ_EGRESS_TAG_LEN;

View File

@ -74,8 +74,7 @@ static struct sk_buff *lan9303_xmit(struct sk_buff *skb, struct net_device *dev)
return skb; return skb;
} }
static struct sk_buff *lan9303_rcv(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)
{ {
__be16 *lan9303_tag; __be16 *lan9303_tag;
u16 lan9303_tag1; u16 lan9303_tag1;

View File

@ -61,8 +61,7 @@ static struct sk_buff *mtk_tag_xmit(struct sk_buff *skb,
return skb; return skb;
} }
static struct sk_buff *mtk_tag_rcv(struct sk_buff *skb, struct net_device *dev, static struct sk_buff *mtk_tag_rcv(struct sk_buff *skb, struct net_device *dev)
struct packet_type *pt)
{ {
u16 hdr; u16 hdr;
int port; int port;

View File

@ -55,8 +55,7 @@ static struct sk_buff *seville_xmit(struct sk_buff *skb,
} }
static struct sk_buff *ocelot_rcv(struct sk_buff *skb, static struct sk_buff *ocelot_rcv(struct sk_buff *skb,
struct net_device *netdev, struct net_device *netdev)
struct packet_type *pt)
{ {
u64 src_port, qos_class; u64 src_port, qos_class;
u64 vlan_tci, tag_type; u64 vlan_tci, tag_type;

View File

@ -38,8 +38,7 @@ static struct sk_buff *ocelot_xmit(struct sk_buff *skb,
} }
static struct sk_buff *ocelot_rcv(struct sk_buff *skb, static struct sk_buff *ocelot_rcv(struct sk_buff *skb,
struct net_device *netdev, struct net_device *netdev)
struct packet_type *pt)
{ {
int src_port, switch_id; int src_port, switch_id;

View File

@ -48,8 +48,7 @@ static struct sk_buff *qca_tag_xmit(struct sk_buff *skb, struct net_device *dev)
return skb; return skb;
} }
static struct sk_buff *qca_tag_rcv(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)
{ {
u8 ver; u8 ver;
u16 hdr; u16 hdr;

View File

@ -64,8 +64,7 @@ static struct sk_buff *rtl4a_tag_xmit(struct sk_buff *skb,
} }
static struct sk_buff *rtl4a_tag_rcv(struct sk_buff *skb, static struct sk_buff *rtl4a_tag_rcv(struct sk_buff *skb,
struct net_device *dev, struct net_device *dev)
struct packet_type *pt)
{ {
u16 protport; u16 protport;
__be16 *p; __be16 *p;

View File

@ -391,8 +391,7 @@ static void sja1105_vlan_rcv(struct sk_buff *skb, int *source_port,
} }
static struct sk_buff *sja1105_rcv(struct sk_buff *skb, static struct sk_buff *sja1105_rcv(struct sk_buff *skb,
struct net_device *netdev, struct net_device *netdev)
struct packet_type *pt)
{ {
int source_port = -1, switch_id = -1; int source_port = -1, switch_id = -1;
struct sja1105_meta meta = {0}; struct sja1105_meta meta = {0};
@ -546,8 +545,7 @@ static struct sk_buff *sja1110_rcv_inband_control_extension(struct sk_buff *skb,
} }
static struct sk_buff *sja1110_rcv(struct sk_buff *skb, static struct sk_buff *sja1110_rcv(struct sk_buff *skb,
struct net_device *netdev, struct net_device *netdev)
struct packet_type *pt)
{ {
int source_port = -1, switch_id = -1; int source_port = -1, switch_id = -1;
bool host_only = false; bool host_only = false;

View File

@ -24,8 +24,7 @@ static struct sk_buff *trailer_xmit(struct sk_buff *skb, struct net_device *dev)
return skb; return skb;
} }
static struct sk_buff *trailer_rcv(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)
{ {
u8 *trailer; u8 *trailer;
int source_port; int source_port;

View File

@ -25,8 +25,7 @@ static struct sk_buff *xrs700x_xmit(struct sk_buff *skb, struct net_device *dev)
return skb; return skb;
} }
static struct sk_buff *xrs700x_rcv(struct sk_buff *skb, struct net_device *dev, static struct sk_buff *xrs700x_rcv(struct sk_buff *skb, struct net_device *dev)
struct packet_type *pt)
{ {
int source_port; int source_port;
u8 *trailer; u8 *trailer;