From patchwork Fri Jun 28 12:03:41 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Dumazet X-Patchwork-Id: 2798551 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 631BDBF4A1 for ; Fri, 28 Jun 2013 12:03:49 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 317BF20158 for ; Fri, 28 Jun 2013 12:03:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 440D420153 for ; Fri, 28 Jun 2013 12:03:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751519Ab3F1MDk (ORCPT ); Fri, 28 Jun 2013 08:03:40 -0400 Received: from mail-ee0-f53.google.com ([74.125.83.53]:51069 "EHLO mail-ee0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750813Ab3F1MDj (ORCPT ); Fri, 28 Jun 2013 08:03:39 -0400 Received: by mail-ee0-f53.google.com with SMTP id c41so993883eek.26 for ; Fri, 28 Jun 2013 05:03:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:subject:from:to:cc:date:content-type:x-mailer :content-transfer-encoding:mime-version; bh=hapiL5XlkGszjskZmKmuIOf/cyPR6e10r6dG9yj0icY=; b=dittFtYCNqO/BFcEEfzIlSFYT5KkEqHmfusOiBERRB2SnFmz8dn1GvelxTRc6rc2CD sFeCEPZRmWF6NFpO6ZhEZ2jNIENokbYuL+m1yyvW06fAwKmr1/gqCsZlFtiQcRKJgwGe pGb4qBcGokgibYPnc0IRpWwhFAS36t9T2cG1f7nY+WdYjKf06MlavGihp389rcVeQexw s93wtCjlgzXSY2As5S1qO1MZq79OC0U+Aq9VinTs+vzLF149z73LG7Z+Z1ap+25IYwXh st7YLtxa91unQQKs3ho+pWXbA/LyMxxuseFGGaylV8Iw0+0beyC4xRGDBKcZv7P7Fgmp K8nw== X-Received: by 10.14.106.195 with SMTP id m43mr13549369eeg.60.1372421018148; Fri, 28 Jun 2013 05:03:38 -0700 (PDT) Received: from [172.28.88.231] ([172.28.88.231]) by mx.google.com with ESMTPSA id cg12sm10136450eeb.7.2013.06.28.05.03.35 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Fri, 28 Jun 2013 05:03:37 -0700 (PDT) Message-ID: <1372421021.3301.263.camel@edumazet-glaptop> Subject: [PATCH] iwl3945: better skb management in rx path From: Eric Dumazet To: "John W. Linville" Cc: "Steinar H. Gunderson" , linux-wireless@vger.kernel.org, netdev Date: Fri, 28 Jun 2013 05:03:41 -0700 X-Mailer: Evolution 3.2.3-0ubuntu6 Mime-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-8.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Eric Dumazet Steinar reported reallocations of skb->head with IPv6, leading to a warning in skb_try_coalesce() It turns out iwl3945 has several problems : 1) skb->truesize is underestimated. We really consume PAGE_SIZE bytes for a fragment, not the frame length. 2) 128 bytes of initial headroom is a bit low and forces reallocations. 3) We can avoid consuming a full page for small enough frames. Reported-by: Steinar H. Gunderson Signed-off-by: Eric Dumazet --- Note : compiled only, I do not have this hardware. drivers/net/wireless/iwlegacy/3945.c | 30 +++++++++++++++---------- 1 file changed, 18 insertions(+), 12 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/net/wireless/iwlegacy/3945.c b/drivers/net/wireless/iwlegacy/3945.c index c092033..ad7294f 100644 --- a/drivers/net/wireless/iwlegacy/3945.c +++ b/drivers/net/wireless/iwlegacy/3945.c @@ -483,14 +483,13 @@ il3945_pass_packet_to_mac80211(struct il_priv *il, struct il_rx_buf *rxb, struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)IL_RX_DATA(pkt); struct il3945_rx_frame_hdr *rx_hdr = IL_RX_HDR(pkt); struct il3945_rx_frame_end *rx_end = IL_RX_END(pkt); - u16 len = le16_to_cpu(rx_hdr->len); + u32 len = le16_to_cpu(rx_hdr->len); struct sk_buff *skb; __le16 fc = hdr->frame_control; + u32 fraglen = PAGE_SIZE << il->hw_params.rx_page_order; /* We received data from the HW, so stop the watchdog */ - if (unlikely - (len + IL39_RX_FRAME_SIZE > - PAGE_SIZE << il->hw_params.rx_page_order)) { + if (unlikely(len + IL39_RX_FRAME_SIZE > fraglen)) { D_DROP("Corruption detected!\n"); return; } @@ -506,26 +505,33 @@ il3945_pass_packet_to_mac80211(struct il_priv *il, struct il_rx_buf *rxb, D_INFO("Woke queues - frame received on passive channel\n"); } - skb = dev_alloc_skb(128); + skb = dev_alloc_skb(256); if (!skb) { IL_ERR("dev_alloc_skb failed\n"); return; } if (!il3945_mod_params.sw_crypto) - il_set_decrypted_flag(il, (struct ieee80211_hdr *)rxb_addr(rxb), + il_set_decrypted_flag(il, (struct ieee80211_hdr *)pkt, le32_to_cpu(rx_end->status), stats); - skb_add_rx_frag(skb, 0, rxb->page, - (void *)rx_hdr->payload - (void *)pkt, len, - len); - + /* If frame is small enough to fit into skb->head, copy it + * and do not consume a full page + */ + if (len <= 256) { + skb_copy_to_linear_data(skb, rx_hdr->payload, len); + skb->tail += len; + } else { + skb_add_rx_frag(skb, 0, rxb->page, + (void *)rx_hdr->payload - (void *)pkt, len, + fraglen); + il->alloc_rxb_page--; + rxb->page = NULL; + } il_update_stats(il, false, fc, len); memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats)); ieee80211_rx(il->hw, skb); - il->alloc_rxb_page--; - rxb->page = NULL; } #define IL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)