Skip to content

Commit

Permalink
net: dsa: Implement flow_dissect callback for tag_qca
Browse files Browse the repository at this point in the history
Add flow_dissect for qca tagged packet to get the right hash.

Signed-off-by: Xiaofei Shen <[email protected]>
Reviewed-by: Andrew Lunn <[email protected]>
Reviewed-by: Vinod Koul <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
xiaofeis authored and davem330 committed Mar 28, 2019
1 parent 5ac4b47 commit 6e57d72
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions net/dsa/tag_qca.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,18 @@ static struct sk_buff *qca_tag_rcv(struct sk_buff *skb, struct net_device *dev,
return skb;
}

static int qca_tag_flow_dissect(const struct sk_buff *skb, __be16 *proto,
int *offset)
{
*offset = QCA_HDR_LEN;
*proto = ((__be16 *)skb->data)[0];

return 0;
}

const struct dsa_device_ops qca_netdev_ops = {
.xmit = qca_tag_xmit,
.rcv = qca_tag_rcv,
.flow_dissect = qca_tag_flow_dissect,
.overhead = QCA_HDR_LEN,
};

0 comments on commit 6e57d72

Please sign in to comment.