mirror of https://gitee.com/openkylin/linux.git
brcmfmac: reinitialize dequeue mask per node
The mask was only initialized for the first node, but it should be done for each node that is handled in the loop. Reviewed-by: Hante Meuleman <meuleman@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
557985ae34
commit
07529d2047
|
@ -1070,7 +1070,7 @@ static struct sk_buff *brcmf_fws_deq(struct brcmf_fws_info *fws, int fifo)
|
|||
int num_nodes;
|
||||
int node_pos;
|
||||
int prec_out;
|
||||
int pmsk = 3;
|
||||
int pmsk;
|
||||
int i;
|
||||
|
||||
table = (struct brcmf_fws_mac_descriptor *)&fws->desc;
|
||||
|
@ -1084,6 +1084,8 @@ static struct sk_buff *brcmf_fws_deq(struct brcmf_fws_info *fws, int fifo)
|
|||
|
||||
if (entry->suppressed)
|
||||
pmsk = 2;
|
||||
else
|
||||
pmsk = 3;
|
||||
p = brcmu_pktq_mdeq(&entry->psq, pmsk << (fifo * 2), &prec_out);
|
||||
if (p == NULL) {
|
||||
if (entry->suppressed) {
|
||||
|
|
Loading…
Reference in New Issue