|
@@ -1841,34 +1841,37 @@ lim_decide_sta_protection(struct mac_context *mac_ctx,
|
|
|
*
|
|
|
***NOTE:
|
|
|
* @param pe_session - Pointer to pe session
|
|
|
- * @return None
|
|
|
+ *
|
|
|
+ * @return qdf_status
|
|
|
*/
|
|
|
-static void __lim_process_channel_switch_timeout(struct pe_session *pe_session)
|
|
|
+static QDF_STATUS
|
|
|
+__lim_process_channel_switch_timeout(struct pe_session *pe_session)
|
|
|
{
|
|
|
struct mac_context *mac;
|
|
|
uint32_t channel_freq;
|
|
|
+ QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
|
|
|
if (!pe_session) {
|
|
|
pe_err("Invalid pe session");
|
|
|
- return;
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
}
|
|
|
mac = pe_session->mac_ctx;
|
|
|
if (!mac) {
|
|
|
pe_err("Invalid mac context");
|
|
|
- return;
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
}
|
|
|
|
|
|
if (!LIM_IS_STA_ROLE(pe_session)) {
|
|
|
pe_warn("Channel switch can be done only in STA role, Current Role: %d",
|
|
|
GET_LIM_SYSTEM_ROLE(pe_session));
|
|
|
- return;
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
}
|
|
|
|
|
|
if (pe_session->gLimSpecMgmt.dot11hChanSwState !=
|
|
|
eLIM_11H_CHANSW_RUNNING) {
|
|
|
pe_warn("Channel switch timer should not have been running in state: %d",
|
|
|
pe_session->gLimSpecMgmt.dot11hChanSwState);
|
|
|
- return;
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
}
|
|
|
|
|
|
channel_freq = pe_session->gLimChannelSwitch.sw_target_freq;
|
|
@@ -1887,7 +1890,7 @@ static void __lim_process_channel_switch_timeout(struct pe_session *pe_session)
|
|
|
if (lim_restore_pre_channel_switch_state(mac, pe_session) !=
|
|
|
QDF_STATUS_SUCCESS) {
|
|
|
pe_err("Could not restore pre-channelSwitch (11h) state, resetting the system");
|
|
|
- return;
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
}
|
|
|
|
|
|
/*
|
|
@@ -1900,20 +1903,19 @@ static void __lim_process_channel_switch_timeout(struct pe_session *pe_session)
|
|
|
*/
|
|
|
pe_err("Invalid channel freq %u Ignore CSA request",
|
|
|
channel_freq);
|
|
|
- return;
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
}
|
|
|
switch (pe_session->gLimChannelSwitch.state) {
|
|
|
case eLIM_CHANNEL_SWITCH_PRIMARY_ONLY:
|
|
|
- lim_switch_primary_channel(mac,
|
|
|
- pe_session->gLimChannelSwitch.
|
|
|
- sw_target_freq, pe_session);
|
|
|
+ status = lim_switch_primary_channel(mac,
|
|
|
+ pe_session->gLimChannelSwitch.sw_target_freq,
|
|
|
+ pe_session);
|
|
|
pe_session->gLimChannelSwitch.state =
|
|
|
eLIM_CHANNEL_SWITCH_IDLE;
|
|
|
break;
|
|
|
case eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY:
|
|
|
- lim_switch_primary_secondary_channel(mac, pe_session);
|
|
|
- pe_session->gLimChannelSwitch.state =
|
|
|
- eLIM_CHANNEL_SWITCH_IDLE;
|
|
|
+ status = lim_switch_primary_secondary_channel(mac, pe_session);
|
|
|
+ pe_session->gLimChannelSwitch.state = eLIM_CHANNEL_SWITCH_IDLE;
|
|
|
break;
|
|
|
|
|
|
case eLIM_CHANNEL_SWITCH_IDLE:
|
|
@@ -1922,9 +1924,13 @@ static void __lim_process_channel_switch_timeout(struct pe_session *pe_session)
|
|
|
if (lim_restore_pre_channel_switch_state(mac, pe_session) !=
|
|
|
QDF_STATUS_SUCCESS) {
|
|
|
pe_err("Could not restore pre-channelSwitch (11h) state, resetting the system");
|
|
|
+ status = QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
- return; /* Please note, this is 'return' and not 'break' */
|
|
|
+ /* Please note, this is 'return' and not 'break' */
|
|
|
+ return status;
|
|
|
}
|
|
|
+
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
void lim_disconnect_complete(struct pe_session *session, bool del_bss)
|
|
@@ -2140,9 +2146,9 @@ void lim_switch_channel_cback(struct mac_context *mac, QDF_STATUS status,
|
|
|
lim_switch_channel_vdev_started(pe_session);
|
|
|
}
|
|
|
|
|
|
-void lim_switch_primary_channel(struct mac_context *mac,
|
|
|
- uint32_t new_channel_freq,
|
|
|
- struct pe_session *pe_session)
|
|
|
+QDF_STATUS lim_switch_primary_channel(struct mac_context *mac,
|
|
|
+ uint32_t new_channel_freq,
|
|
|
+ struct pe_session *pe_session)
|
|
|
{
|
|
|
pe_debug("freq: %d --> freq: %d", pe_session->curr_op_freq,
|
|
|
new_channel_freq);
|
|
@@ -2159,8 +2165,7 @@ void lim_switch_primary_channel(struct mac_context *mac,
|
|
|
mac->lim.gpchangeChannelCallback = lim_switch_channel_cback;
|
|
|
mac->lim.gpchangeChannelData = NULL;
|
|
|
|
|
|
- lim_send_switch_chnl_params(mac, pe_session);
|
|
|
- return;
|
|
|
+ return lim_send_switch_chnl_params(mac, pe_session);
|
|
|
}
|
|
|
|
|
|
#ifdef WLAN_FEATURE_11BE
|
|
@@ -2184,8 +2189,8 @@ lim_set_puncture_from_chan_switch_to_session(struct pe_session *pe_session)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
-void lim_switch_primary_secondary_channel(struct mac_context *mac,
|
|
|
- struct pe_session *pe_session)
|
|
|
+QDF_STATUS lim_switch_primary_secondary_channel(struct mac_context *mac,
|
|
|
+ struct pe_session *pe_session)
|
|
|
{
|
|
|
uint32_t new_channel_freq;
|
|
|
uint8_t ch_center_freq_seg0;
|
|
@@ -2236,9 +2241,7 @@ void lim_switch_primary_secondary_channel(struct mac_context *mac,
|
|
|
pe_session->ch_width = ch_width;
|
|
|
lim_set_puncture_from_chan_switch_to_session(pe_session);
|
|
|
|
|
|
- lim_send_switch_chnl_params(mac, pe_session);
|
|
|
-
|
|
|
- return;
|
|
|
+ return lim_send_switch_chnl_params(mac, pe_session);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -3734,7 +3737,8 @@ QDF_STATUS lim_tx_complete(void *context, qdf_nbuf_t buf, bool free)
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
-static void lim_ht_switch_chnl_params(struct pe_session *pe_session)
|
|
|
+static QDF_STATUS
|
|
|
+lim_ht_switch_chnl_params(struct pe_session *pe_session)
|
|
|
{
|
|
|
uint8_t center_freq = 0;
|
|
|
enum phy_ch_width ch_width = CH_WIDTH_20MHZ;
|
|
@@ -3744,7 +3748,7 @@ static void lim_ht_switch_chnl_params(struct pe_session *pe_session)
|
|
|
mac = pe_session->mac_ctx;
|
|
|
if (!mac) {
|
|
|
pe_err("Invalid mac_ctx");
|
|
|
- return;
|
|
|
+ return QDF_STATUS_E_INVAL;
|
|
|
}
|
|
|
|
|
|
primary_channel = wlan_reg_freq_to_chan(mac->pdev,
|
|
@@ -3782,7 +3786,7 @@ static void lim_ht_switch_chnl_params(struct pe_session *pe_session)
|
|
|
mac->lim.gpchangeChannelCallback = lim_switch_channel_cback;
|
|
|
mac->lim.gpchangeChannelData = NULL;
|
|
|
|
|
|
- lim_send_switch_chnl_params(mac, pe_session);
|
|
|
+ return lim_send_switch_chnl_params(mac, pe_session);
|
|
|
}
|
|
|
|
|
|
static void lim_ht_switch_chnl_req(struct pe_session *session)
|
|
@@ -10105,6 +10109,7 @@ QDF_STATUS lim_sta_mlme_vdev_restart_send(struct vdev_mlme_obj *vdev_mlme,
|
|
|
uint16_t data_len, void *data)
|
|
|
{
|
|
|
struct pe_session *session;
|
|
|
+ QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
|
|
|
session = (struct pe_session *)data;
|
|
|
if (!session) {
|
|
@@ -10122,19 +10127,26 @@ QDF_STATUS lim_sta_mlme_vdev_restart_send(struct vdev_mlme_obj *vdev_mlme,
|
|
|
if (mlme_is_chan_switch_in_progress(vdev_mlme->vdev)) {
|
|
|
switch (session->channelChangeReasonCode) {
|
|
|
case LIM_SWITCH_CHANNEL_OPERATION:
|
|
|
- __lim_process_channel_switch_timeout(session);
|
|
|
+ status = __lim_process_channel_switch_timeout(session);
|
|
|
break;
|
|
|
case LIM_SWITCH_CHANNEL_HT_WIDTH:
|
|
|
- lim_ht_switch_chnl_params(session);
|
|
|
+ status = lim_ht_switch_chnl_params(session);
|
|
|
break;
|
|
|
case LIM_SWITCH_CHANNEL_REASSOC:
|
|
|
- lim_send_switch_chnl_params(session->mac_ctx, session);
|
|
|
+ status = lim_send_switch_chnl_params(session->mac_ctx,
|
|
|
+ session);
|
|
|
break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
- return QDF_STATUS_SUCCESS;
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ pe_err_rl("Failed to send VDEV_RESTART for chan switch vdev %d",
|
|
|
+ wlan_vdev_get_id(vdev_mlme->vdev));
|
|
|
+ mlme_set_chan_switch_in_progress(vdev_mlme->vdev, false);
|
|
|
+ }
|
|
|
+
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
QDF_STATUS lim_sta_mlme_vdev_stop_send(struct vdev_mlme_obj *vdev_mlme,
|