diff options
| author | Eric Dumazet <eric.dumazet@gmail.com> | 2011-10-18 21:00:24 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-10-19 03:10:46 -0400 | 
| commit | 9e903e085262ffbf1fc44a17ac06058aca03524a (patch) | |
| tree | 4acefc97ba38c1733474d25c0b2053b56af97db1 /net/ipv6/ip6_output.c | |
| parent | dd767856a36e00b631d65ebc4bb81b19915532d6 (diff) | |
| download | olio-linux-3.10-9e903e085262ffbf1fc44a17ac06058aca03524a.tar.xz olio-linux-3.10-9e903e085262ffbf1fc44a17ac06058aca03524a.zip  | |
net: add skb frag size accessors
To ease skb->truesize sanitization, its better to be able to localize
all references to skb frags size.
Define accessors : skb_frag_size() to fetch frag size, and
skb_frag_size_{set|add|sub}() to manipulate it.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_output.c')
| -rw-r--r-- | net/ipv6/ip6_output.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 1e20b64e646..1c9bf8b5c30 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -1512,13 +1512,14 @@ alloc_new_skb:  				err = -EMSGSIZE;  				goto error;  			} -			if (getfrag(from, skb_frag_address(frag)+frag->size, +			if (getfrag(from, +				    skb_frag_address(frag) + skb_frag_size(frag),  				    offset, copy, skb->len, skb) < 0) {  				err = -EFAULT;  				goto error;  			}  			sk->sk_sndmsg_off += copy; -			frag->size += copy; +			skb_frag_size_add(frag, copy);  			skb->len += copy;  			skb->data_len += copy;  			skb->truesize += copy;  |