@@ -715,14 +715,20 @@
static void ath9k_debug_print_skb(struct sk_buff_head *skb_head)
{
+ struct ieee80211_tx_info *tx_info;
struct ath_frame_info *fi;
struct ath_buf *bf;
struct sk_buff *skb;
skb_queue_walk(skb_head, skb) {
+ tx_info = IEEE80211_SKB_CB(skb);
+ nodes_len += snprintf(nodes_buf + nodes_len,
+ nodes_size - nodes_len,
+ "skb tx_info->flags = %#.8x\n",
+ tx_info->flags);
+
fi = get_frame_info(skb);
bf = fi->bf;
-
if (!bf) {
nodes_len += snprintf(nodes_buf + nodes_len, nodes_size - nodes_len, "no bf\n");
continue;