Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e34a11d authored by David S. Miller's avatar David S. Miller
Browse files

[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: default avatarDavid S. Miller <davem@davemloft.net>
parent 4c93566e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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;
	}