|
@@ -1159,7 +1159,7 @@ void policy_mgr_incr_active_session(struct wlan_objmgr_psoc *psoc,
|
|
|
pm_ctx->tdls_cbacks.tdls_notify_increment_session(psoc);
|
|
|
|
|
|
/*
|
|
|
- * Disable LRO if P2P or IBSS or SAP connection has come up or
|
|
|
+ * Disable LRO/GRO if P2P or IBSS or SAP connection has come up or
|
|
|
* there are more than one STA connections
|
|
|
*/
|
|
|
if ((policy_mgr_mode_specific_connection_count(psoc, PM_STA_MODE, NULL) > 1) ||
|
|
@@ -1168,8 +1168,8 @@ void policy_mgr_incr_active_session(struct wlan_objmgr_psoc *psoc,
|
|
|
0) ||
|
|
|
(policy_mgr_mode_specific_connection_count(psoc, PM_P2P_GO_MODE, NULL) > 0) ||
|
|
|
(policy_mgr_mode_specific_connection_count(psoc, PM_IBSS_MODE, NULL) > 0)) {
|
|
|
- if (pm_ctx->dp_cbacks.hdd_disable_lro_in_concurrency != NULL)
|
|
|
- pm_ctx->dp_cbacks.hdd_disable_lro_in_concurrency(true);
|
|
|
+ if (pm_ctx->dp_cbacks.hdd_disable_rx_ol_in_concurrency != NULL)
|
|
|
+ pm_ctx->dp_cbacks.hdd_disable_rx_ol_in_concurrency(true);
|
|
|
};
|
|
|
|
|
|
/* Enable RPS if SAP interface has come up */
|
|
@@ -1229,15 +1229,15 @@ QDF_STATUS policy_mgr_decr_active_session(struct wlan_objmgr_psoc *psoc,
|
|
|
/* Notify tdls */
|
|
|
if (pm_ctx->tdls_cbacks.tdls_notify_decrement_session)
|
|
|
pm_ctx->tdls_cbacks.tdls_notify_decrement_session(psoc);
|
|
|
- /* Enable LRO if there no concurrency */
|
|
|
+ /* Enable LRO/GRO if there no concurrency */
|
|
|
if ((policy_mgr_mode_specific_connection_count(psoc, PM_STA_MODE, NULL) == 1) &&
|
|
|
(policy_mgr_mode_specific_connection_count(psoc, PM_SAP_MODE, NULL) == 0) &&
|
|
|
(policy_mgr_mode_specific_connection_count(psoc, PM_P2P_CLIENT_MODE, NULL) ==
|
|
|
0) &&
|
|
|
(policy_mgr_mode_specific_connection_count(psoc, PM_P2P_GO_MODE, NULL) == 0) &&
|
|
|
(policy_mgr_mode_specific_connection_count(psoc, PM_IBSS_MODE, NULL) == 0)) {
|
|
|
- if (pm_ctx->dp_cbacks.hdd_disable_lro_in_concurrency != NULL)
|
|
|
- pm_ctx->dp_cbacks.hdd_disable_lro_in_concurrency(false);
|
|
|
+ if (pm_ctx->dp_cbacks.hdd_disable_rx_ol_in_concurrency != NULL)
|
|
|
+ pm_ctx->dp_cbacks.hdd_disable_rx_ol_in_concurrency(false);
|
|
|
};
|
|
|
|
|
|
/* Disable RPS if SAP interface has come up */
|