mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: r8188eu: use lists for hwxmits
struct hw_xmit's sta_list points to one of vo, vi, be or bk_pending in struct xmit_priv. All of these are defined as struct __queue, which is a list plus a spinlock. For these components, the spinlock is unused, we need only the list. This patch converts sta_list and vo, vi, be and bk_pending to struct list_head. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150 Link: https://lore.kernel.org/r/20230123205342.229589-19-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
45bbc110e9
commit
e558c19278
2 changed files with 19 additions and 23 deletions
|
@ -76,10 +76,10 @@ int _rtw_init_xmit_priv(struct xmit_priv *pxmitpriv, struct adapter *padapter)
|
|||
|
||||
pxmitpriv->adapter = padapter;
|
||||
|
||||
rtw_init_queue(&pxmitpriv->be_pending);
|
||||
rtw_init_queue(&pxmitpriv->bk_pending);
|
||||
rtw_init_queue(&pxmitpriv->vi_pending);
|
||||
rtw_init_queue(&pxmitpriv->vo_pending);
|
||||
INIT_LIST_HEAD(&pxmitpriv->be_pending);
|
||||
INIT_LIST_HEAD(&pxmitpriv->bk_pending);
|
||||
INIT_LIST_HEAD(&pxmitpriv->vi_pending);
|
||||
INIT_LIST_HEAD(&pxmitpriv->vo_pending);
|
||||
|
||||
rtw_init_queue(&pxmitpriv->free_xmit_queue);
|
||||
|
||||
|
@ -881,10 +881,10 @@ s32 rtw_txframes_pending(struct adapter *padapter)
|
|||
{
|
||||
struct xmit_priv *pxmitpriv = &padapter->xmitpriv;
|
||||
|
||||
return (!list_empty(&pxmitpriv->be_pending.queue) ||
|
||||
!list_empty(&pxmitpriv->bk_pending.queue) ||
|
||||
!list_empty(&pxmitpriv->vi_pending.queue) ||
|
||||
!list_empty(&pxmitpriv->vo_pending.queue));
|
||||
return (!list_empty(&pxmitpriv->be_pending) ||
|
||||
!list_empty(&pxmitpriv->bk_pending) ||
|
||||
!list_empty(&pxmitpriv->vi_pending) ||
|
||||
!list_empty(&pxmitpriv->vo_pending));
|
||||
}
|
||||
|
||||
s32 rtw_txframes_sta_ac_pending(struct adapter *padapter, struct pkt_attrib *pattrib)
|
||||
|
@ -1357,7 +1357,6 @@ s32 rtw_xmitframe_enqueue(struct adapter *padapter, struct xmit_frame *pxmitfram
|
|||
|
||||
struct xmit_frame *rtw_dequeue_xframe(struct xmit_priv *pxmitpriv, struct hw_xmit *phwxmit_i)
|
||||
{
|
||||
struct list_head *sta_phead;
|
||||
struct hw_xmit *phwxmit;
|
||||
struct tx_servq *ptxservq, *tmp_txservq;
|
||||
struct list_head *xframe_list;
|
||||
|
@ -1375,10 +1374,7 @@ struct xmit_frame *rtw_dequeue_xframe(struct xmit_priv *pxmitpriv, struct hw_xmi
|
|||
|
||||
for (i = 0; i < HWXMIT_ENTRY; i++) {
|
||||
phwxmit = phwxmit_i + inx[i];
|
||||
|
||||
sta_phead = get_list_head(phwxmit->sta_queue);
|
||||
|
||||
list_for_each_entry_safe(ptxservq, tmp_txservq, sta_phead, tx_pending) {
|
||||
list_for_each_entry_safe(ptxservq, tmp_txservq, phwxmit->sta_list, tx_pending) {
|
||||
xframe_list = get_list_head(&ptxservq->sta_pending);
|
||||
if (list_empty(xframe_list))
|
||||
continue;
|
||||
|
@ -1460,7 +1456,7 @@ s32 rtw_xmit_classifier(struct adapter *padapter, struct xmit_frame *pxmitframe)
|
|||
ptxservq = rtw_get_sta_pending(padapter, psta, pattrib->priority, (u8 *)(&ac_index));
|
||||
|
||||
if (list_empty(&ptxservq->tx_pending))
|
||||
list_add_tail(&ptxservq->tx_pending, get_list_head(phwxmits[ac_index].sta_queue));
|
||||
list_add_tail(&ptxservq->tx_pending, phwxmits[ac_index].sta_list);
|
||||
|
||||
list_add_tail(&pxmitframe->list, get_list_head(&ptxservq->sta_pending));
|
||||
ptxservq->qcnt++;
|
||||
|
@ -1481,10 +1477,10 @@ int rtw_alloc_hwxmits(struct adapter *padapter)
|
|||
|
||||
hwxmits = pxmitpriv->hwxmits;
|
||||
|
||||
hwxmits[0].sta_queue = &pxmitpriv->vo_pending;
|
||||
hwxmits[1].sta_queue = &pxmitpriv->vi_pending;
|
||||
hwxmits[2].sta_queue = &pxmitpriv->be_pending;
|
||||
hwxmits[3].sta_queue = &pxmitpriv->bk_pending;
|
||||
hwxmits[0].sta_list = &pxmitpriv->vo_pending;
|
||||
hwxmits[1].sta_list = &pxmitpriv->vi_pending;
|
||||
hwxmits[2].sta_list = &pxmitpriv->be_pending;
|
||||
hwxmits[3].sta_list = &pxmitpriv->bk_pending;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -97,7 +97,7 @@ union txdesc {
|
|||
};
|
||||
|
||||
struct hw_xmit {
|
||||
struct __queue *sta_queue;
|
||||
struct list_head *sta_list;
|
||||
int accnt;
|
||||
};
|
||||
|
||||
|
@ -257,10 +257,10 @@ struct agg_pkt_info {
|
|||
|
||||
struct xmit_priv {
|
||||
spinlock_t lock;
|
||||
struct __queue be_pending;
|
||||
struct __queue bk_pending;
|
||||
struct __queue vi_pending;
|
||||
struct __queue vo_pending;
|
||||
struct list_head be_pending;
|
||||
struct list_head bk_pending;
|
||||
struct list_head vi_pending;
|
||||
struct list_head vo_pending;
|
||||
u8 *pallocated_frame_buf;
|
||||
u8 *pxmit_frame_buf;
|
||||
uint free_xmitframe_cnt;
|
||||
|
|
Loading…
Reference in a new issue