Commit eac8e385 authored by Sujith's avatar Sujith Committed by John W. Linville

ath9k_htc: Add dropped SKB count to debugfs

Signed-off-by: default avatarSujith <Sujith.Manoharan@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 0daa3e3a
...@@ -129,6 +129,7 @@ static void hif_usb_tx_cb(struct urb *urb) ...@@ -129,6 +129,7 @@ static void hif_usb_tx_cb(struct urb *urb)
TX_STAT_INC(skb_completed); TX_STAT_INC(skb_completed);
} else { } else {
dev_kfree_skb_any(skb); dev_kfree_skb_any(skb);
TX_STAT_INC(skb_dropped);
} }
} }
...@@ -149,11 +150,15 @@ static void hif_usb_tx_cb(struct urb *urb) ...@@ -149,11 +150,15 @@ static void hif_usb_tx_cb(struct urb *urb)
} }
} }
static inline void ath9k_skb_queue_purge(struct sk_buff_head *list) static inline void ath9k_skb_queue_purge(struct hif_device_usb *hif_dev,
struct sk_buff_head *list)
{ {
struct sk_buff *skb; struct sk_buff *skb;
while ((skb = __skb_dequeue(list)) != NULL)
while ((skb = __skb_dequeue(list)) != NULL) {
dev_kfree_skb_any(skb); dev_kfree_skb_any(skb);
TX_STAT_INC(skb_dropped);
}
} }
/* TX lock has to be taken */ /* TX lock has to be taken */
...@@ -214,7 +219,7 @@ static int __hif_usb_tx(struct hif_device_usb *hif_dev) ...@@ -214,7 +219,7 @@ static int __hif_usb_tx(struct hif_device_usb *hif_dev)
ret = usb_submit_urb(tx_buf->urb, GFP_ATOMIC); ret = usb_submit_urb(tx_buf->urb, GFP_ATOMIC);
if (ret) { if (ret) {
tx_buf->len = tx_buf->offset = 0; tx_buf->len = tx_buf->offset = 0;
ath9k_skb_queue_purge(&tx_buf->skb_queue); ath9k_skb_queue_purge(hif_dev, &tx_buf->skb_queue);
__skb_queue_head_init(&tx_buf->skb_queue); __skb_queue_head_init(&tx_buf->skb_queue);
list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf); list_move_tail(&tx_buf->list, &hif_dev->tx.tx_buf);
hif_dev->tx.tx_buf_cnt++; hif_dev->tx.tx_buf_cnt++;
...@@ -281,7 +286,7 @@ static void hif_usb_stop(void *hif_handle, u8 pipe_id) ...@@ -281,7 +286,7 @@ static void hif_usb_stop(void *hif_handle, u8 pipe_id)
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&hif_dev->tx.tx_lock, flags); spin_lock_irqsave(&hif_dev->tx.tx_lock, flags);
ath9k_skb_queue_purge(&hif_dev->tx.tx_skb_queue); ath9k_skb_queue_purge(hif_dev, &hif_dev->tx.tx_skb_queue);
hif_dev->tx.tx_skb_cnt = 0; hif_dev->tx.tx_skb_cnt = 0;
hif_dev->tx.flags |= HIF_USB_TX_STOP; hif_dev->tx.flags |= HIF_USB_TX_STOP;
spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags); spin_unlock_irqrestore(&hif_dev->tx.tx_lock, flags);
......
...@@ -261,6 +261,7 @@ struct ath_tx_stats { ...@@ -261,6 +261,7 @@ struct ath_tx_stats {
u32 buf_completed; u32 buf_completed;
u32 skb_queued; u32 skb_queued;
u32 skb_completed; u32 skb_completed;
u32 skb_dropped;
}; };
struct ath_rx_stats { struct ath_rx_stats {
......
...@@ -609,6 +609,9 @@ static ssize_t read_file_xmit(struct file *file, char __user *user_buf, ...@@ -609,6 +609,9 @@ static ssize_t read_file_xmit(struct file *file, char __user *user_buf,
len += snprintf(buf + len, sizeof(buf) - len, len += snprintf(buf + len, sizeof(buf) - len,
"%20s : %10u\n", "SKBs completed", "%20s : %10u\n", "SKBs completed",
priv->debug.tx_stats.skb_completed); priv->debug.tx_stats.skb_completed);
len += snprintf(buf + len, sizeof(buf) - len,
"%20s : %10u\n", "SKBs dropped",
priv->debug.tx_stats.skb_dropped);
return simple_read_from_buffer(user_buf, count, ppos, buf, len); return simple_read_from_buffer(user_buf, count, ppos, buf, len);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment