mirror of https://gitee.com/openkylin/linux.git
wil6210: relaxed check for BACK start sequence
Sometimes, due to the race between Rx path and WMI_BA_STATUS_EVENTID WMI event, few frames may be passed to the stack before reorder buffer allocated. Then, after BACK establishment, it start getting frames with sequence number ahead of SSN, and it get interpreted as missing frames. Then, BACK mechanism will wait for missing frames; data traffic will be stopped. In case of interface configured for DHCP, this data delay causes DHCP failure. Relax checking for sequence number; use sequence of 1-st frame handled by the buffer as SSN for this buffer. This is work-around, real fix should be done when proper BACK mechanism implemented. Signed-off-by: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
6c2faf0939
commit
c888cdd41f
|
@ -91,6 +91,22 @@ void wil_rx_reorder(struct wil6210_priv *wil, struct sk_buff *skb)
|
|||
|
||||
spin_lock(&r->reorder_lock);
|
||||
|
||||
/** Due to the race between WMI events, where BACK establishment
|
||||
* reported, and data Rx, few packets may be pass up before reorder
|
||||
* buffer get allocated. Catch up by pretending SSN is what we
|
||||
* see in the 1-st Rx packet
|
||||
*/
|
||||
if (r->first_time) {
|
||||
r->first_time = false;
|
||||
if (seq != r->head_seq_num) {
|
||||
wil_err(wil, "Error: 1-st frame with wrong sequence"
|
||||
" %d, should be %d. Fixing...\n", seq,
|
||||
r->head_seq_num);
|
||||
r->head_seq_num = seq;
|
||||
r->ssn = seq;
|
||||
}
|
||||
}
|
||||
|
||||
/* frame with out of date sequence number */
|
||||
if (seq_less(seq, r->head_seq_num)) {
|
||||
dev_kfree_skb(skb);
|
||||
|
@ -162,6 +178,7 @@ struct wil_tid_ampdu_rx *wil_tid_ampdu_rx_alloc(struct wil6210_priv *wil,
|
|||
r->head_seq_num = ssn;
|
||||
r->buf_size = size;
|
||||
r->stored_mpdu_num = 0;
|
||||
r->first_time = true;
|
||||
return r;
|
||||
}
|
||||
|
||||
|
|
|
@ -301,6 +301,7 @@ struct wil_tid_ampdu_rx {
|
|||
u16 buf_size;
|
||||
u16 timeout;
|
||||
u8 dialog_token;
|
||||
bool first_time; /* is it 1-st time this buffer used? */
|
||||
};
|
||||
|
||||
struct wil6210_stats {
|
||||
|
|
Loading…
Reference in New Issue