qcacmn: Fix channel information mesh frame tx completion

Added channel info to meta header in mesh frame tx completion.

Change-Id: If032ee92330cc76c683f2b81af3707bccfe76fa9
CRs-Fixed: 2003389
This commit is contained in:
Venkateswara Swamy Bandaru
2017-05-18 11:54:20 +05:30
committed by snandini
parent a4c33f01bc
commit 15c68dadff
2 changed files with 4 additions and 0 deletions

View File

@@ -1733,6 +1733,7 @@ void dp_tx_comp_fill_tx_completion_stats(struct dp_tx_desc_s *tx_desc,
mhdr = (struct meta_hdr_s *)qdf_nbuf_data(netbuf); mhdr = (struct meta_hdr_s *)qdf_nbuf_data(netbuf);
mhdr->rssi = ts->ack_frame_rssi; mhdr->rssi = ts->ack_frame_rssi;
mhdr->channel = tx_desc->pdev->operating_channel;
} }
#else #else

View File

@@ -783,6 +783,9 @@ struct dp_pdev {
struct hal_rx_ppdu_info ppdu_info; struct hal_rx_ppdu_info ppdu_info;
/* operating channel */
uint8_t operating_channel;
qdf_nbuf_queue_t rx_status_q; qdf_nbuf_queue_t rx_status_q;
uint32_t mon_ppdu_id; uint32_t mon_ppdu_id;
uint32_t mon_ppdu_status; uint32_t mon_ppdu_status;