Commit 7a950ea8 authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by Kalle Valo

ath6kl: Make sure to delete rx aggregation timer in aggr_reset_state()

The timer which is used to flush rx aggregation frames needs to
be disabled when resetting the aggregation state. This is found
in code review.
Signed-off-by: default avatarVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 241b128b
...@@ -1685,6 +1685,11 @@ void aggr_reset_state(struct aggr_info *aggr_info) ...@@ -1685,6 +1685,11 @@ void aggr_reset_state(struct aggr_info *aggr_info)
{ {
u8 tid; u8 tid;
if (aggr_info->timer_scheduled) {
del_timer(&aggr_info->timer);
aggr_info->timer_scheduled = false;
}
for (tid = 0; tid < NUM_OF_TIDS; tid++) for (tid = 0; tid < NUM_OF_TIDS; tid++)
aggr_delete_tid_state(aggr_info, tid); aggr_delete_tid_state(aggr_info, tid);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment