Skip to content

Commit

Permalink
iwlwifi: mvm: limit aggregation size in low latency to 6
Browse files Browse the repository at this point in the history
This is a tradeoff between enabling better throughput for
bursty traffic and low latency. The number 6 was found to be
a good tradeoff for the Miracast use case which is the
major use case for low latency.

Signed-off-by: Eyal Shapira <eyalx.shapira@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
  • Loading branch information
Eyal Shapira authored and Emmanuel Grumbach committed Sep 21, 2014
1 parent 1ebc8f2 commit ddfc159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/iwlwifi/mvm/ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ iwl_op_mode_mvm_start(struct iwl_trans *trans, const struct iwl_cfg *cfg,
mvm->first_agg_queue = 12;
}
mvm->sf_state = SF_UNINIT;
mvm->low_latency_agg_frame_limit = 1;
mvm->low_latency_agg_frame_limit = 6;

mutex_init(&mvm->mutex);
mutex_init(&mvm->d0i3_suspend_mutex);
Expand Down

0 comments on commit ddfc159

Please sign in to comment.