]> rtime.felk.cvut.cz Git - zynq/linux.git/commitdiff
ibmvnic: Remove skb->protocol checks in ibmvnic_xmit
authorJohn Allen <jallen@linux.vnet.ibm.com>
Fri, 9 Feb 2018 19:19:46 +0000 (13:19 -0600)
committerDavid S. Miller <davem@davemloft.net>
Fri, 9 Feb 2018 19:47:00 +0000 (14:47 -0500)
Having these checks in ibmvnic_xmit causes problems with VLAN
tagging and balance-alb/tlb bonding modes. The restriction they
imposed can be removed.

Signed-off-by: John Allen <jallen@linux.vnet.ibm.com>
Signed-off-by: Nathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ibm/ibmvnic.c

index ce127a72cda23f8333bae11cedf8919e16480ce1..27447260215d1bb36a9d0cd5540efadf52514cb6 100644 (file)
@@ -1419,10 +1419,7 @@ static int ibmvnic_xmit(struct sk_buff *skb, struct net_device *netdev)
                hdrs += 2;
        }
        /* determine if l2/3/4 headers are sent to firmware */
-       if ((*hdrs >> 7) & 1 &&
-           (skb->protocol == htons(ETH_P_IP) ||
-            skb->protocol == htons(ETH_P_IPV6) ||
-            skb->protocol == htons(ETH_P_ARP))) {
+       if ((*hdrs >> 7) & 1) {
                build_hdr_descs_arr(tx_buff, &num_entries, *hdrs);
                tx_crq.v1.n_crq_elem = num_entries;
                tx_buff->indir_arr[0] = tx_crq;