qcacmn: debug prints for monitor mode TLVs

Add prints to track:
* Incoming TLVs in the monitor mode status ring.
* HE, HE-MU and HE-MU-Other values being passed to the
  stack.

Change-Id: Ib23336353dc4a2253a62444b767d2a706ce372ea
CRs-Fixed: 2242514
This commit is contained in:
Mohit Khanna
2018-02-21 18:50:38 -08:00
committed by nshrivas
父節點 6c22db3b45
當前提交 4b3b7e7110
共有 4 個文件被更改,包括 337 次插入329 次删除

查看文件

@@ -3784,7 +3784,11 @@ qdf_nbuf_update_radiotap_he_flags(struct mon_rx_status *rx_status,
put_unaligned_le16(rx_status->he_data6, &rtap_buf[rtap_len]);
rtap_len += 2;
qdf_info("he data %x %x %x %x %x %x",
rx_status->he_data1,
rx_status->he_data2, rx_status->he_data3,
rx_status->he_data4, rx_status->he_data5,
rx_status->he_data6);
return rtap_len;
}
@@ -3824,6 +3828,11 @@ qdf_nbuf_update_radiotap_he_mu_flags(struct mon_rx_status *rx_status,
rtap_buf[rtap_len] = rx_status->he_RU[3];
rtap_len += 1;
qdf_info("he_flags %x %x he-RU %x %x %x %x",
rx_status->he_flags1,
rx_status->he_flags2, rx_status->he_RU[0],
rx_status->he_RU[1], rx_status->he_RU[2],
rx_status->he_RU[3]);
return rtap_len;
}
@@ -3857,7 +3866,10 @@ qdf_nbuf_update_radiotap_he_mu_other_flags(struct mon_rx_status *rx_status,
rtap_buf[rtap_len] = rx_status->he_per_user_known;
rtap_len += 1;
qdf_info("he_per_user %x %x pos %x knwn %x",
rx_status->he_per_user_1,
rx_status->he_per_user_2, rx_status->he_per_user_position,
rx_status->he_per_user_known);
return rtap_len;
}