qcacmn: Optimize rx reorder queue setup

This change optimizes rx reorder queue setup by using
tid_bitmap, which contains a group of tids, to set up
multi tids at a time instead of one tid after another.

Change-Id: I161b0c812c436ef79d2d1db693b8d0ac41505878
CRs-Fixed: 3661593
这个提交包含在:
jinbao liu
2023-11-14 01:57:57 -08:00
提交者 Ravindra Konda
父节点 7555136c16
当前提交 b4f2073ac3
修改 15 个文件,包含 571 行新增143 行删除

查看文件

@@ -2905,10 +2905,10 @@ end:
static inline QDF_STATUS
dp_peer_rx_reorder_queue_setup(struct dp_soc *soc, struct dp_peer *peer,
int tid, uint32_t ba_window_size)
uint32_t tid_bitmap, uint32_t ba_window_size)
{
return soc->arch_ops.dp_peer_rx_reorder_queue_setup(soc,
peer, tid,
peer, tid_bitmap,
ba_window_size);
}