|
|
@@ -2855,9 +2855,15 @@ static void rs_fill_lq_cmd(struct iwl_mvm *mvm,
|
|
|
* Tx Fifo so that it can start a transaction in the same TxOP. This
|
|
|
* basically allows the firmware to send bursts.
|
|
|
*/
|
|
|
- if (iwl_mvm_vif_low_latency(mvmvif))
|
|
|
+ if (iwl_mvm_vif_low_latency(mvmvif)) {
|
|
|
lq_cmd->agg_frame_cnt_limit--;
|
|
|
|
|
|
+ if (mvm->low_latency_agg_frame_limit)
|
|
|
+ lq_cmd->agg_frame_cnt_limit =
|
|
|
+ min(lq_cmd->agg_frame_cnt_limit,
|
|
|
+ mvm->low_latency_agg_frame_limit);
|
|
|
+ }
|
|
|
+
|
|
|
if (mvmsta->vif->p2p)
|
|
|
lq_cmd->flags |= LQ_FLAG_USE_RTS_MSK;
|
|
|
|