* [v2 PATCH] net: Stop decapitating clones that have a head_frag
@ 2012-05-03 4:18 Alexander Duyck
2012-05-03 4:33 ` Eric Dumazet
0 siblings, 1 reply; 3+ messages in thread
From: Alexander Duyck @ 2012-05-03 4:18 UTC (permalink / raw)
To: netdev; +Cc: davem, Alexander Duyck, Eric Dumazet, Jeff Kirsher
This change is meant ot prevent stealing the skb->head to use as a page in
the event that the skb->head was cloned. This allows the other clones to
track each other via shinfo->dataref.
Without this we break down to two methods for tracking the reference count,
one being dataref, the other being the page count. As a result it becomes
difficult to track how many references there are to skb->head.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
---
net/core/skbuff.c | 9 +++++----
net/ipv4/tcp_input.c | 9 ++-------
2 files changed, 7 insertions(+), 11 deletions(-)
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 52ba2b5..9e8caa0 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -1699,17 +1699,18 @@ static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
struct splice_pipe_desc *spd, struct sock *sk)
{
int seg;
- bool head_is_linear = !skb->head_frag;
+ bool head_is_locked = !skb->head_frag || skb_cloned(skb);
/* map the linear part :
- * If skb->head_frag is set, this 'linear' part is backed
- * by a fragment, and we can avoid a copy.
+ * If skb->head_frag is set, this 'linear' part is backed by a
+ * fragment, and if the head is not shared with any clones then
+ * we can avoid a copy since we own the head portion of this page.
*/
if (__splice_segment(virt_to_page(skb->data),
(unsigned long) skb->data & (PAGE_SIZE - 1),
skb_headlen(skb),
offset, len, skb, spd,
- head_is_linear,
+ head_is_locked,
sk, pipe))
return true;
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 2f696ef..c6f78e2 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -4589,7 +4589,7 @@ copyfrags:
to->data_len += len;
goto merge;
}
- if (from->head_frag) {
+ if (from->head_frag && !skb_cloned(from)) {
struct page *page;
unsigned int offset;
@@ -4599,12 +4599,7 @@ copyfrags:
offset = from->data - (unsigned char *)page_address(page);
skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
page, offset, skb_headlen(from));
-
- if (skb_cloned(from))
- get_page(page);
- else
- *fragstolen = true;
-
+ *fragstolen = true;
delta = len; /* we dont know real truesize... */
goto copyfrags;
}
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [v2 PATCH] net: Stop decapitating clones that have a head_frag
2012-05-03 4:18 [v2 PATCH] net: Stop decapitating clones that have a head_frag Alexander Duyck
@ 2012-05-03 4:33 ` Eric Dumazet
2012-05-03 5:39 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Eric Dumazet @ 2012-05-03 4:33 UTC (permalink / raw)
To: Alexander Duyck; +Cc: netdev, davem, Eric Dumazet, Jeff Kirsher
On Wed, 2012-05-02 at 21:18 -0700, Alexander Duyck wrote:
> This change is meant ot prevent stealing the skb->head to use as a page in
> the event that the skb->head was cloned. This allows the other clones to
> track each other via shinfo->dataref.
>
> Without this we break down to two methods for tracking the reference count,
> one being dataref, the other being the page count. As a result it becomes
> difficult to track how many references there are to skb->head.
>
> Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
> Cc: Eric Dumazet <edumazet@google.com>
> Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
> ---
>
> net/core/skbuff.c | 9 +++++----
> net/ipv4/tcp_input.c | 9 ++-------
> 2 files changed, 7 insertions(+), 11 deletions(-)
>
> diff --git a/net/core/skbuff.c b/net/core/skbuff.c
> index 52ba2b5..9e8caa0 100644
> --- a/net/core/skbuff.c
> +++ b/net/core/skbuff.c
> @@ -1699,17 +1699,18 @@ static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
> struct splice_pipe_desc *spd, struct sock *sk)
> {
> int seg;
> - bool head_is_linear = !skb->head_frag;
> + bool head_is_locked = !skb->head_frag || skb_cloned(skb);
>
Thanks
Acked-by: Eric Dumazet <edumazet@google.com>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [v2 PATCH] net: Stop decapitating clones that have a head_frag
2012-05-03 4:33 ` Eric Dumazet
@ 2012-05-03 5:39 ` David Miller
0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2012-05-03 5:39 UTC (permalink / raw)
To: eric.dumazet; +Cc: alexander.h.duyck, netdev, edumazet, jeffrey.t.kirsher
From: Eric Dumazet <eric.dumazet@gmail.com>
Date: Thu, 03 May 2012 06:33:58 +0200
> On Wed, 2012-05-02 at 21:18 -0700, Alexander Duyck wrote:
>> This change is meant ot prevent stealing the skb->head to use as a page in
>> the event that the skb->head was cloned. This allows the other clones to
>> track each other via shinfo->dataref.
>>
>> Without this we break down to two methods for tracking the reference count,
>> one being dataref, the other being the page count. As a result it becomes
>> difficult to track how many references there are to skb->head.
>>
>> Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
...
> Acked-by: Eric Dumazet <edumazet@google.com>
Applied, thanks.
These tests of the form:
head_frag || cloned
and
head_frag && cloned
will probably crop up in other places. Therefore we should probably
add a "skb_head_is_locked()" helper function to skbuff.h
Well, there are already two instances, which is candidate enough. :-)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-05-03 5:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-03 4:18 [v2 PATCH] net: Stop decapitating clones that have a head_frag Alexander Duyck
2012-05-03 4:33 ` Eric Dumazet
2012-05-03 5:39 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox