Message ID | 20181215090325.31604-6-luca@coelho.fi (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Johannes Berg |
Headers | show
Return-Path: <linux-wireless-owner@kernel.org> Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 42DBF17E9 for <patchwork-linux-wireless@patchwork.kernel.org>; Sat, 15 Dec 2018 09:03:38 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2B74B1FFBD for <patchwork-linux-wireless@patchwork.kernel.org>; Sat, 15 Dec 2018 09:03:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 1FDB3289C2; Sat, 15 Dec 2018 09:03:38 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C71442953D for <patchwork-linux-wireless@patchwork.kernel.org>; Sat, 15 Dec 2018 09:03:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730015AbeLOJDh (ORCPT <rfc822;patchwork-linux-wireless@patchwork.kernel.org>); Sat, 15 Dec 2018 04:03:37 -0500 Received: from paleale.coelho.fi ([176.9.41.70]:42206 "EHLO farmhouse.coelho.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729245AbeLOJDg (ORCPT <rfc822;linux-wireless@vger.kernel.org>); Sat, 15 Dec 2018 04:03:36 -0500 Received: from 91-156-4-241.elisa-laajakaista.fi ([91.156.4.241] helo=redipa.ger.corp.intel.com) by farmhouse.coelho.fi with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.91) (envelope-from <luca@coelho.fi>) id 1gY5rC-0002oc-IW; Sat, 15 Dec 2018 11:03:34 +0200 From: Luca Coelho <luca@coelho.fi> To: johannes@sipsolutions.net Cc: linux-wireless@vger.kernel.org, Sara Sharon <sara.sharon@intel.com>, Luca Coelho <luciano.coelho@intel.com> Date: Sat, 15 Dec 2018 11:03:06 +0200 Message-Id: <20181215090325.31604-6-luca@coelho.fi> X-Mailer: git-send-email 2.19.2 In-Reply-To: <20181215090325.31604-1-luca@coelho.fi> References: <20181215090325.31604-1-luca@coelho.fi> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [PATCH 05/24] mac80211: free skb fraglist before freeing the skb Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: <linux-wireless.vger.kernel.org> X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP |
Series |
cfg80211/mac80211 patches from our internal tree 2018-12-15
|
expand
|
diff --git a/net/mac80211/status.c b/net/mac80211/status.c index aa4afbf0abaf..267236297b2a 100644 --- a/net/mac80211/status.c +++ b/net/mac80211/status.c @@ -556,6 +556,11 @@ static void ieee80211_report_used_skb(struct ieee80211_local *local, } ieee80211_led_tx(local); + + if (skb_has_frag_list(skb)) { + kfree_skb_list(skb_shinfo(skb)->frag_list); + skb_shinfo(skb)->frag_list = NULL; + } } /*