mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
qlcnic: set gso_type
qlcnic set gso_size but not gso type. This leads to crashes in macvtap. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1594712f9e
commit
bd69ba798e
@ -986,8 +986,13 @@ qlcnic_process_lro(struct qlcnic_adapter *adapter,
|
||||
th->seq = htonl(seq_number);
|
||||
length = skb->len;
|
||||
|
||||
if (adapter->flags & QLCNIC_FW_LRO_MSS_CAP)
|
||||
if (adapter->flags & QLCNIC_FW_LRO_MSS_CAP) {
|
||||
skb_shinfo(skb)->gso_size = qlcnic_get_lro_sts_mss(sts_data1);
|
||||
if (skb->protocol == htons(ETH_P_IPV6))
|
||||
skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
|
||||
else
|
||||
skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
|
||||
}
|
||||
|
||||
if (vid != 0xffff)
|
||||
__vlan_hwaccel_put_tag(skb, vid);
|
||||
|
Loading…
Reference in New Issue
Block a user