mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-04 12:13:43 +00:00
drivers: net: fix return value check in emac_tso_csum()
in emac_tso_csum(), return an error code if an unexpected value is returned by pskb_trim(). Signed-off-by: Yuanjun Gong <ruc_gongyuanjun@163.com> Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4258faa130
commit
78a93c3100
@ -1260,8 +1260,11 @@ static int emac_tso_csum(struct emac_adapter *adpt,
|
||||
if (skb->protocol == htons(ETH_P_IP)) {
|
||||
u32 pkt_len = ((unsigned char *)ip_hdr(skb) - skb->data)
|
||||
+ ntohs(ip_hdr(skb)->tot_len);
|
||||
if (skb->len > pkt_len)
|
||||
pskb_trim(skb, pkt_len);
|
||||
if (skb->len > pkt_len) {
|
||||
ret = pskb_trim(skb, pkt_len);
|
||||
if (unlikely(ret))
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
hdr_len = skb_tcp_all_headers(skb);
|
||||
|
Loading…
Reference in New Issue
Block a user