mirror of https://gitee.com/openkylin/linux.git
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:
parent
a11cddd42b
commit
e9c87a3b74
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue