summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tx.c b/tx.c
index c3a9c49..3334c77 100644
--- a/tx.c
+++ b/tx.c
@@ -618,7 +618,8 @@ static inline struct sk_buff *mwl_tx_do_amsdu(struct mwl_priv *priv,
spin_unlock_bh(&sta_info->amsdu_lock);
dev_dbg(&priv->hw->wiphy->dev, "%pM amsdu->num=%u, tx_skb->len=%zu, amsdu->skb->len=%zu", sta->addr, amsdu->num, tx_skb->len, amsdu->skb->len);
-
+ if (amsdu->skb->len < 100)
+ dev_dbg(&priv->hw->wiphy->dev, "%pM amsdu: %*ph", sta->addr, (int)amsdu->skb->len, amsdu->skb->data)
return NULL;
}