rtw88: rsvd page should go though management queue

The hardware default uses management queue to transmit frames that are
downloaded into reserved page, so we need to clearly assign the frames
to use qsel in TX_DESC_QSEL_MGMT to avoid using wrong queue.

Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Yan-Hsuan Chuang 2019-06-14 15:24:14 +08:00 committed by Kalle Valo
parent a11cddd42b
commit e9c87a3b74
1 changed files with 1 additions and 1 deletions

View File

@ -362,6 +362,6 @@ void rtw_rsvd_page_pkt_info_update(struct rtw_dev *rtwdev,
pkt_info->bmc = bmc; pkt_info->bmc = bmc;
pkt_info->tx_pkt_size = skb->len; pkt_info->tx_pkt_size = skb->len;
pkt_info->offset = chip->tx_pkt_desc_sz; pkt_info->offset = chip->tx_pkt_desc_sz;
pkt_info->qsel = skb->priority; pkt_info->qsel = TX_DESC_QSEL_MGMT;
pkt_info->ls = true; pkt_info->ls = true;
} }