aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2008-01-22 23:44:31 -0800
committerDavid S. Miller <davem@davemloft.net>2008-01-23 03:11:40 -0800
commit1e34a11d55c9437775367d72ad03f9af99e78bd0 (patch)
treed2b2daf8f433ae851faaf007ce9e6b0b33427cf0 /net
parent[TULIP] DMFE: Fix SROM parsing regression. (diff)
downloadlinux-dev-1e34a11d55c9437775367d72ad03f9af99e78bd0.tar.xz
linux-dev-1e34a11d55c9437775367d72ad03f9af99e78bd0.zip
[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>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/ip_output.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index fd99fbd685ea..480469b92aa7 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -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;
}