]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
brcmfmac: rework headroom check in .start_xmit()
authorArend Van Spriel <arend.vanspriel@broadcom.com>
Thu, 22 Jun 2017 10:01:03 +0000 (11:01 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 28 Jun 2017 17:53:06 +0000 (20:53 +0300)
Since commit 9cc4b7cb86cb ("brcmfmac: Make skb header writable
before use") the headroom usage has been fixed. However, the
driver was keeping statistics that got lost. So reworking the
code so we get those driver statistics back for debugging.

Cc: James Hughes <james.hughes@raspberrypi.org>
Reviewed-by: Hante Meuleman <hante.meuleman@broadcom.com>
Reviewed-by: Pieter-Paul Giesberts <pieter-paul.giesberts@broadcom.com>
Reviewed-by: Franky Lin <franky.lin@broadcom.com>
Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/broadcom/brcm80211/brcmfmac/bus.h
drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.c
drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c

index e1a4d9e0eb10d45920ebbc355a02c54b2d28017b..163ddc49f95117774f03184b9f0679bd82d086d2 100644 (file)
@@ -112,6 +112,17 @@ struct brcmf_bus_msgbuf {
 };
 
 
+/**
+ * struct brcmf_bus_stats - bus statistic counters.
+ *
+ * @pktcowed: packets cowed for extra headroom/unorphan.
+ * @pktcow_failed: packets dropped due to failed cow-ing.
+ */
+struct brcmf_bus_stats {
+       atomic_t pktcowed;
+       atomic_t pktcow_failed;
+};
+
 /**
  * struct brcmf_bus - interface structure between common and bus layer
  *
@@ -120,8 +131,8 @@ struct brcmf_bus_msgbuf {
  * @dev: device pointer of bus device.
  * @drvr: public driver information.
  * @state: operational state of the bus interface.
+ * @stats: statistics shared between common and bus layer.
  * @maxctl: maximum size for rxctl request message.
- * @tx_realloc: number of tx packets realloced for headroom.
  * @chip: device identifier of the dongle chip.
  * @always_use_fws_queue: bus wants use queue also when fwsignal is inactive.
  * @wowl_supported: is wowl supported by bus driver.
@@ -137,8 +148,8 @@ struct brcmf_bus {
        struct device *dev;
        struct brcmf_pub *drvr;
        enum brcmf_bus_state state;
+       struct brcmf_bus_stats stats;
        uint maxctl;
-       atomic_t tx_realloc;
        u32 chip;
        u32 chiprev;
        bool always_use_fws_queue;
index b4c86434ad80a81fc06355b7e207e95a08b1d70a..2153e8062b4cefcca2ee92c6459fae295fbf4500 100644 (file)
@@ -199,6 +199,7 @@ static netdev_tx_t brcmf_netdev_start_xmit(struct sk_buff *skb,
        struct brcmf_if *ifp = netdev_priv(ndev);
        struct brcmf_pub *drvr = ifp->drvr;
        struct ethhdr *eh;
+       int head_delta;
 
        brcmf_dbg(DATA, "Enter, bsscfgidx=%d\n", ifp->bsscfgidx);
 
@@ -211,13 +212,21 @@ static netdev_tx_t brcmf_netdev_start_xmit(struct sk_buff *skb,
                goto done;
        }
 
-       /* Make sure there's enough writable headroom*/
-       ret = skb_cow_head(skb, drvr->hdrlen);
-       if (ret < 0) {
-               brcmf_err("%s: skb_cow_head failed\n",
-                         brcmf_ifname(ifp));
-               dev_kfree_skb(skb);
-               goto done;
+       /* Make sure there's enough writeable headroom */
+       if (skb_headroom(skb) < drvr->hdrlen || skb_header_cloned(skb)) {
+               head_delta = drvr->hdrlen - skb_headroom(skb);
+
+               brcmf_dbg(INFO, "%s: insufficient headroom (%d)\n",
+                         brcmf_ifname(ifp), head_delta);
+               atomic_inc(&drvr->bus_if->stats.pktcowed);
+               ret = pskb_expand_head(skb, ALIGN(head_delta, NET_SKB_PAD), 0,
+                                      GFP_ATOMIC);
+               if (ret < 0) {
+                       brcmf_err("%s: failed to expand headroom\n",
+                                 brcmf_ifname(ifp));
+                       atomic_inc(&drvr->bus_if->stats.pktcow_failed);
+                       goto done;
+               }
        }
 
        /* validate length for ether packet */
index eb67d7d5be9d87718c9842f804cb64c47d651ed3..fbcbb43259366ccd87c37119a5024dbb825099ed 100644 (file)
@@ -2037,6 +2037,7 @@ brcmf_sdio_wait_event_wakeup(struct brcmf_sdio *bus)
 
 static int brcmf_sdio_txpkt_hdalign(struct brcmf_sdio *bus, struct sk_buff *pkt)
 {
+       struct brcmf_bus_stats *stats;
        u16 head_pad;
        u8 *dat_buf;
 
@@ -2046,16 +2047,18 @@ static int brcmf_sdio_txpkt_hdalign(struct brcmf_sdio *bus, struct sk_buff *pkt)
        head_pad = ((unsigned long)dat_buf % bus->head_align);
        if (head_pad) {
                if (skb_headroom(pkt) < head_pad) {
-                       atomic_inc(&bus->sdiodev->bus_if->tx_realloc);
-                       head_pad = 0;
-                       if (skb_cow(pkt, head_pad))
+                       stats = &bus->sdiodev->bus_if->stats;
+                       atomic_inc(&stats->pktcowed);
+                       if (skb_cow_head(pkt, head_pad)) {
+                               atomic_inc(&stats->pktcow_failed);
                                return -ENOMEM;
+                       }
                }
                skb_push(pkt, head_pad);
                dat_buf = (u8 *)(pkt->data);
-               memset(dat_buf, 0, head_pad + bus->tx_hdrlen);
        }
-       return head_pad;
+       memset(dat_buf, 0, head_pad + bus->tx_hdrlen);
+       return 0;
 }
 
 /**