mirror of https://gitee.com/openkylin/linux.git
net: qualcomm: fix QCA7000 checksum handling
Based on tests the QCA7000 doesn't support checksum offloading. So assume
ip_summed is CHECKSUM_NONE and let the kernel take care of the checksum
handling. This fixes data transfer issues in noisy environments.
Reported-by: Michael Heimpold <michael.heimpold@in-tech.com>
Fixes: 291ab06ecf
("net: qualcomm: new Ethernet over SPI driver for QCA7000")
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a16ef91aa6
commit
429205da6c
|
@ -434,7 +434,7 @@ qcaspi_receive(struct qcaspi *qca)
|
|||
skb_put(qca->rx_skb, retcode);
|
||||
qca->rx_skb->protocol = eth_type_trans(
|
||||
qca->rx_skb, qca->rx_skb->dev);
|
||||
qca->rx_skb->ip_summed = CHECKSUM_UNNECESSARY;
|
||||
skb_checksum_none_assert(qca->rx_skb);
|
||||
netif_rx_ni(qca->rx_skb);
|
||||
qca->rx_skb = netdev_alloc_skb_ip_align(net_dev,
|
||||
net_dev->mtu + VLAN_ETH_HLEN);
|
||||
|
|
|
@ -107,7 +107,7 @@ qca_tty_receive(struct serdev_device *serdev, const unsigned char *data,
|
|||
skb_put(qca->rx_skb, retcode);
|
||||
qca->rx_skb->protocol = eth_type_trans(
|
||||
qca->rx_skb, qca->rx_skb->dev);
|
||||
qca->rx_skb->ip_summed = CHECKSUM_UNNECESSARY;
|
||||
skb_checksum_none_assert(qca->rx_skb);
|
||||
netif_rx_ni(qca->rx_skb);
|
||||
qca->rx_skb = netdev_alloc_skb_ip_align(netdev,
|
||||
netdev->mtu +
|
||||
|
|
Loading…
Reference in New Issue