Return-Path: From: Gustavo Padovan To: linux-bluetooth@vger.kernel.org Subject: [PATCH 2/4] Bluetooth: Fix skb length calculation Date: Fri, 11 May 2012 13:16:12 -0300 Message-Id: <1336752974-7747-2-git-send-email-gustavo@padovan.org> In-Reply-To: <1336752974-7747-1-git-send-email-gustavo@padovan.org> References: <1336752974-7747-1-git-send-email-gustavo@padovan.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: When we add a fragment to a skb, len and data_len fields need to be updated. Signed-off-by: Gustavo Padovan --- net/bluetooth/l2cap_core.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 2b30bd7..e5a4fd9 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -1851,6 +1851,9 @@ static inline int l2cap_skbuff_fromiovec(struct l2cap_chan *chan, sent += count; len -= count; + skb->len += (*frag)->len; + skb->data_len += (*frag)->len; + frag = &(*frag)->next; } -- 1.7.10.1