be2net: Extend xmit workaround to BE3 chip
[ Upstream commit 7580e0a78eb29e7bb1a772eba4088250bbb70d41 ]
We have seen a bug where the NIC incorrectly changes the length in the
IP header of a padded packet to include the padding bytes. The driver
already has a workaround for this so do the workaround for this NIC too.
This resolves the issue.
The NIC in question identifies itself as follows:
[ 8.828494] be2net 0000:02:00.0: FW version is 10.7.110.31
[ 8.834759] be2net 0000:02:00.0: Emulex OneConnect(be3): PF FLEX10 port 1
02:00.0 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
Fixes: ca34fe38f0
("be2net: fix wrong usage of adapter->generation")
Signed-off-by: Ross Lagerwall <ross.lagerwall@citrix.com>
Link: https://lore.kernel.org/r/20230616164549.2863037-1-ross.lagerwall@citrix.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
50f689918d
commit
f5b6dbec26
@ -1136,8 +1136,8 @@ static struct sk_buff *be_lancer_xmit_workarounds(struct be_adapter *adapter,
|
|||||||
eth_hdr_len = ntohs(skb->protocol) == ETH_P_8021Q ?
|
eth_hdr_len = ntohs(skb->protocol) == ETH_P_8021Q ?
|
||||||
VLAN_ETH_HLEN : ETH_HLEN;
|
VLAN_ETH_HLEN : ETH_HLEN;
|
||||||
if (skb->len <= 60 &&
|
if (skb->len <= 60 &&
|
||||||
(lancer_chip(adapter) || skb_vlan_tag_present(skb)) &&
|
(lancer_chip(adapter) || BE3_chip(adapter) ||
|
||||||
is_ipv4_pkt(skb)) {
|
skb_vlan_tag_present(skb)) && is_ipv4_pkt(skb)) {
|
||||||
ip = (struct iphdr *)ip_hdr(skb);
|
ip = (struct iphdr *)ip_hdr(skb);
|
||||||
pskb_trim(skb, eth_hdr_len + ntohs(ip->tot_len));
|
pskb_trim(skb, eth_hdr_len + ntohs(ip->tot_len));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user