mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
[IPV4]: Add missing skb->truesize increment in ip_append_page().
And as noted by Takahiro Yasui, we thus need to bump the sk->sk_wmem_alloc at this spot as well. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4c93566e2a
commit
1e34a11d55
@ -1172,6 +1172,8 @@ ssize_t ip_append_page(struct sock *sk, struct page *page,
|
||||
|
||||
skb->len += len;
|
||||
skb->data_len += len;
|
||||
skb->truesize += len;
|
||||
atomic_add(len, &sk->sk_wmem_alloc);
|
||||
offset += len;
|
||||
size -= len;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user