[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1398202653.29946.63.camel@edumazet-glaptop2.roam.corp.google.com>
Date: Tue, 22 Apr 2014 14:37:33 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: Jon Maloy <jon.maloy@...csson.com>
Cc: Erik Hugne <erik.hugne@...csson.com>, netdev@...r.kernel.org
Subject: Re: skb_try_coalesce bug?
On Tue, 2014-04-22 at 14:29 -0700, Eric Dumazet wrote:
> Then if you do that, you also need to change head->data_len !
Untested patch would be :
diff --git a/net/tipc/link.c b/net/tipc/link.c
index c5190ab75290..85077dd7c63e 100644
--- a/net/tipc/link.c
+++ b/net/tipc/link.c
@@ -2349,6 +2349,7 @@ int tipc_link_frag_rcv(struct sk_buff **head, struct sk_buff **tail,
(*tail)->next = frag;
*tail = frag;
(*head)->truesize += frag->truesize;
+ (*head)->data_len += frag->len;
}
if (fragid == LAST_FRAGMENT) {
*fbuf = *head;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists