mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
myri10ge: fix incorrect use of ntohs()
1b4c44e6369dbbafd113f1e00b406f1eda5ab5b2 incorrectly used ntohs() rather than htons() in myri10ge_vlan_rx(). Thanks to Fengguang Wu, Yuanhan Liu's kernel-build tester for pointing out this bug. Signed-off-by: Andrew Gallatin <gallatin@myri.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
aeaf6e9d2f
commit
30828d2b60
@ -1283,7 +1283,7 @@ myri10ge_vlan_rx(struct net_device *dev, void *addr, struct sk_buff *skb)
|
||||
va += MXGEFW_PAD;
|
||||
veh = (struct vlan_ethhdr *)va;
|
||||
if ((dev->features & NETIF_F_HW_VLAN_RX) == NETIF_F_HW_VLAN_RX &&
|
||||
veh->h_vlan_proto == ntohs(ETH_P_8021Q)) {
|
||||
veh->h_vlan_proto == htons(ETH_P_8021Q)) {
|
||||
/* fixup csum if needed */
|
||||
if (skb->ip_summed == CHECKSUM_COMPLETE) {
|
||||
vsum = csum_partial(va + ETH_HLEN, VLAN_HLEN, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user