提交 1e34a11d 编写于 作者: D David S. Miller

[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: NDavid S. Miller <davem@davemloft.net>
上级 4c93566e
...@@ -1172,6 +1172,8 @@ ssize_t ip_append_page(struct sock *sk, struct page *page, ...@@ -1172,6 +1172,8 @@ ssize_t ip_append_page(struct sock *sk, struct page *page,
skb->len += len; skb->len += len;
skb->data_len += len; skb->data_len += len;
skb->truesize += len;
atomic_add(len, &sk->sk_wmem_alloc);
offset += len; offset += len;
size -= len; size -= len;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册