diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2011-03-01 02:36:47 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-01 20:35:02 (GMT) |
commit | 5a2ef92023506d4e9cd13617b5a46b4d0f1b6747 (patch) | |
tree | 995af8882f53c67ed79e10a1bd37d523ba7986a9 /net/core | |
parent | 9836f4080fd5b680cc2d9656355c1a7c681b1ffd (diff) | |
download | linux-5a2ef92023506d4e9cd13617b5a46b4d0f1b6747.tar.xz |
inet: Remove unused sk_sndmsg_* from UFO
UFO doesn't really use the sk_sndmsg_* parameters so touching
them is pointless. It can't use them anyway since the whole
point of UFO is to use the original pages without copying.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/skbuff.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 14cf560..1eb526a8 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -2434,8 +2434,6 @@ int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb, return -ENOMEM; /* initialize the next frag */ - sk->sk_sndmsg_page = page; - sk->sk_sndmsg_off = 0; skb_fill_page_desc(skb, frg_cnt, page, 0, 0); skb->truesize += PAGE_SIZE; atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc); @@ -2455,7 +2453,6 @@ int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb, return -EFAULT; /* copy was successful so update the size parameters */ - sk->sk_sndmsg_off += copy; frag->size += copy; skb->len += copy; skb->data_len += copy; |