mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-10 13:28:44 +00:00
e1000e: remove open-coded skb_cow_head
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> Cc: Jesse Brandeburg <jesse.brandeburg@intel.com> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
4a54b1e598
commit
bcf1f57fbf
@ -5100,16 +5100,14 @@ static int e1000_tso(struct e1000_ring *tx_ring, struct sk_buff *skb)
|
|||||||
u32 cmd_length = 0;
|
u32 cmd_length = 0;
|
||||||
u16 ipcse = 0, mss;
|
u16 ipcse = 0, mss;
|
||||||
u8 ipcss, ipcso, tucss, tucso, hdr_len;
|
u8 ipcss, ipcso, tucss, tucso, hdr_len;
|
||||||
|
int err;
|
||||||
|
|
||||||
if (!skb_is_gso(skb))
|
if (!skb_is_gso(skb))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (skb_header_cloned(skb)) {
|
err = skb_cow_head(skb, 0);
|
||||||
int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
|
if (err < 0)
|
||||||
|
return err;
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
|
hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
|
||||||
mss = skb_shinfo(skb)->gso_size;
|
mss = skb_shinfo(skb)->gso_size;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user