|
@@ -7338,12 +7338,13 @@ int wlan_hdd_update_phymode(struct net_device *net, tHalHandle hal,
|
|
|
#endif
|
|
|
bool band_24 = false, band_5g = false;
|
|
|
bool ch_bond24 = false, ch_bond5g = false;
|
|
|
- tSmeConfigParams smeconfig;
|
|
|
+ tSmeConfigParams *sme_config;
|
|
|
uint32_t chwidth = WNI_CFG_CHANNEL_BONDING_MODE_DISABLE;
|
|
|
uint32_t vhtchanwidth;
|
|
|
eCsrPhyMode phymode = -EIO, old_phymode;
|
|
|
enum hdd_dot11_mode hdd_dot11mode = phddctx->config->dot11Mode;
|
|
|
eCsrBand curr_band = eCSR_BAND_ALL;
|
|
|
+ int retval = 0;
|
|
|
|
|
|
old_phymode = sme_get_phy_mode(hal);
|
|
|
|
|
@@ -7542,59 +7543,68 @@ int wlan_hdd_update_phymode(struct net_device *net, tHalHandle hal,
|
|
|
}
|
|
|
|
|
|
if (phymode != -EIO) {
|
|
|
- sme_get_config_param(hal, &smeconfig);
|
|
|
- smeconfig.csrConfig.phyMode = phymode;
|
|
|
+ sme_config = qdf_mem_malloc(sizeof(*sme_config));
|
|
|
+ if (!sme_config) {
|
|
|
+ hdd_err("Failed to allocate memory for sme_config");
|
|
|
+ return -ENOMEM;
|
|
|
+ }
|
|
|
+ qdf_mem_zero(sme_config, sizeof(*sme_config));
|
|
|
+ sme_get_config_param(hal, sme_config);
|
|
|
+ sme_config->csrConfig.phyMode = phymode;
|
|
|
#ifdef QCA_HT_2040_COEX
|
|
|
if (phymode == eCSR_DOT11_MODE_11n &&
|
|
|
chwidth == WNI_CFG_CHANNEL_BONDING_MODE_DISABLE) {
|
|
|
- smeconfig.csrConfig.obssEnabled = false;
|
|
|
+ sme_config->csrConfig.obssEnabled = false;
|
|
|
halStatus = sme_set_ht2040_mode(hal,
|
|
|
pAdapter->sessionId,
|
|
|
eHT_CHAN_HT20, false);
|
|
|
if (halStatus == QDF_STATUS_E_FAILURE) {
|
|
|
hdd_err("Failed to disable OBSS");
|
|
|
- return -EIO;
|
|
|
+ retval = -EIO;
|
|
|
+ goto free;
|
|
|
}
|
|
|
} else if (phymode == eCSR_DOT11_MODE_11n &&
|
|
|
chwidth == WNI_CFG_CHANNEL_BONDING_MODE_ENABLE) {
|
|
|
- smeconfig.csrConfig.obssEnabled = true;
|
|
|
+ sme_config->csrConfig.obssEnabled = true;
|
|
|
halStatus = sme_set_ht2040_mode(hal,
|
|
|
pAdapter->sessionId,
|
|
|
eHT_CHAN_HT20, true);
|
|
|
if (halStatus == QDF_STATUS_E_FAILURE) {
|
|
|
hdd_err("Failed to enable OBSS");
|
|
|
- return -EIO;
|
|
|
+ retval = -EIO;
|
|
|
+ goto free;
|
|
|
}
|
|
|
}
|
|
|
#endif
|
|
|
- smeconfig.csrConfig.eBand = curr_band;
|
|
|
- smeconfig.csrConfig.bandCapability = curr_band;
|
|
|
+ sme_config->csrConfig.eBand = curr_band;
|
|
|
+ sme_config->csrConfig.bandCapability = curr_band;
|
|
|
if (curr_band == eCSR_BAND_24)
|
|
|
- smeconfig.csrConfig.Is11hSupportEnabled = 0;
|
|
|
+ sme_config->csrConfig.Is11hSupportEnabled = 0;
|
|
|
else
|
|
|
- smeconfig.csrConfig.Is11hSupportEnabled =
|
|
|
+ sme_config->csrConfig.Is11hSupportEnabled =
|
|
|
phddctx->config->Is11hSupportEnabled;
|
|
|
if (curr_band == eCSR_BAND_24)
|
|
|
- smeconfig.csrConfig.channelBondingMode24GHz = chwidth;
|
|
|
+ sme_config->csrConfig.channelBondingMode24GHz = chwidth;
|
|
|
else if (curr_band == eCSR_BAND_24)
|
|
|
- smeconfig.csrConfig.channelBondingMode5GHz = chwidth;
|
|
|
+ sme_config->csrConfig.channelBondingMode5GHz = chwidth;
|
|
|
else {
|
|
|
- smeconfig.csrConfig.channelBondingMode24GHz = chwidth;
|
|
|
- smeconfig.csrConfig.channelBondingMode5GHz = chwidth;
|
|
|
+ sme_config->csrConfig.channelBondingMode24GHz = chwidth;
|
|
|
+ sme_config->csrConfig.channelBondingMode5GHz = chwidth;
|
|
|
}
|
|
|
- smeconfig.csrConfig.nVhtChannelWidth = vhtchanwidth;
|
|
|
- sme_update_config(hal, &smeconfig);
|
|
|
+ sme_config->csrConfig.nVhtChannelWidth = vhtchanwidth;
|
|
|
+ sme_update_config(hal, sme_config);
|
|
|
|
|
|
phddctx->config->dot11Mode = hdd_dot11mode;
|
|
|
phddctx->config->nBandCapability = curr_band;
|
|
|
phddctx->config->nChannelBondingMode24GHz =
|
|
|
- smeconfig.csrConfig.channelBondingMode24GHz;
|
|
|
+ sme_config->csrConfig.channelBondingMode24GHz;
|
|
|
phddctx->config->nChannelBondingMode5GHz =
|
|
|
- smeconfig.csrConfig.channelBondingMode5GHz;
|
|
|
+ sme_config->csrConfig.channelBondingMode5GHz;
|
|
|
phddctx->config->vhtChannelWidth = vhtchanwidth;
|
|
|
if (hdd_update_config_cfg(phddctx) == false) {
|
|
|
hdd_err("could not update config_dat");
|
|
|
- return -EIO;
|
|
|
+ retval = -EIO;
|
|
|
+ goto free;
|
|
|
}
|
|
|
if (phddctx->config->nChannelBondingMode5GHz)
|
|
|
phddctx->wiphy->bands[HDD_NL80211_BAND_5GHZ]->ht_cap.cap
|
|
@@ -7607,7 +7617,10 @@ int wlan_hdd_update_phymode(struct net_device *net, tHalHandle hal,
|
|
|
phymode, chwidth, curr_band, vhtchanwidth);
|
|
|
}
|
|
|
|
|
|
- return 0;
|
|
|
+free:
|
|
|
+ if (sme_config)
|
|
|
+ qdf_mem_free(sme_config);
|
|
|
+ return retval;
|
|
|
}
|
|
|
|
|
|
struct temperature_priv {
|
|
@@ -7723,7 +7736,7 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
|
|
|
hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
|
|
|
hdd_context_t *hdd_ctx;
|
|
|
- tSmeConfigParams smeConfig;
|
|
|
+ tSmeConfigParams *sme_config;
|
|
|
int *value = (int *)extra;
|
|
|
int sub_cmd = value[0];
|
|
|
int set_value = value[1];
|
|
@@ -7745,7 +7758,12 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
if (0 != ret)
|
|
|
return ret;
|
|
|
|
|
|
- memset(&smeConfig, 0x00, sizeof(smeConfig));
|
|
|
+ sme_config = qdf_mem_malloc(sizeof(*sme_config));
|
|
|
+ if (!sme_config) {
|
|
|
+ hdd_err("failed to allocate memory for sme_config");
|
|
|
+ return -ENOMEM;
|
|
|
+ }
|
|
|
+ qdf_mem_zero(sme_config, sizeof(*sme_config));
|
|
|
|
|
|
switch (sub_cmd) {
|
|
|
case WE_SET_11D_STATE:
|
|
@@ -7753,17 +7771,18 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
if ((ENABLE_11D == set_value)
|
|
|
|| (DISABLE_11D == set_value)) {
|
|
|
|
|
|
- sme_get_config_param(hHal, &smeConfig);
|
|
|
- smeConfig.csrConfig.Is11dSupportEnabled =
|
|
|
+ sme_get_config_param(hHal, sme_config);
|
|
|
+ sme_config->csrConfig.Is11dSupportEnabled =
|
|
|
(bool) set_value;
|
|
|
|
|
|
hdd_debug("11D state=%d!!",
|
|
|
- smeConfig.csrConfig.
|
|
|
+ sme_config->csrConfig.
|
|
|
Is11dSupportEnabled);
|
|
|
|
|
|
- sme_update_config(hHal, &smeConfig);
|
|
|
+ sme_update_config(hHal, sme_config);
|
|
|
} else {
|
|
|
- return -EINVAL;
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
@@ -7854,8 +7873,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
}
|
|
|
break;
|
|
|
case WE_SET_WOW_DATA_INACTIVITY_TO:
|
|
|
- if (!hHal)
|
|
|
- return -EINVAL;
|
|
|
+ if (!hHal) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
|
|
|
if ((set_value < CFG_WOW_DATA_INACTIVITY_TIMEOUT_MIN) ||
|
|
|
(set_value > CFG_WOW_DATA_INACTIVITY_TIMEOUT_MAX) ||
|
|
@@ -7881,7 +7902,8 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
pAdapter->device_mode,
|
|
|
set_value) != QDF_STATUS_SUCCESS) {
|
|
|
hdd_err("Setting tx power failed");
|
|
|
- return -EIO;
|
|
|
+ ret = -EIO;
|
|
|
+ goto free;
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
@@ -7899,7 +7921,8 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
if (sme_set_max_tx_power(hHal, bssid, selfMac, set_value)
|
|
|
!= QDF_STATUS_SUCCESS) {
|
|
|
hdd_err("Setting maximum tx power failed");
|
|
|
- return -EIO;
|
|
|
+ ret = -EIO;
|
|
|
+ goto free;
|
|
|
}
|
|
|
|
|
|
break;
|
|
@@ -7911,7 +7934,8 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
if (sme_set_max_tx_power_per_band(eCSR_BAND_24, set_value) !=
|
|
|
QDF_STATUS_SUCCESS) {
|
|
|
hdd_err("Setting max tx power failed for 2.4 GHz band");
|
|
|
- return -EIO;
|
|
|
+ ret = -EIO;
|
|
|
+ goto free;
|
|
|
}
|
|
|
|
|
|
break;
|
|
@@ -7923,7 +7947,8 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
if (sme_set_max_tx_power_per_band(eCSR_BAND_5G, set_value) !=
|
|
|
QDF_STATUS_SUCCESS) {
|
|
|
hdd_err("Setting max tx power failed for 5.0 GHz band");
|
|
|
- return -EIO;
|
|
|
+ ret = -EIO;
|
|
|
+ goto free;
|
|
|
}
|
|
|
|
|
|
break;
|
|
@@ -8100,10 +8125,12 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
RTSThreshold;
|
|
|
else if (((set_value & HDD_RTSCTS_EN_MASK) == 0)
|
|
|
|| ((set_value & HDD_RTSCTS_EN_MASK) ==
|
|
|
- HDD_CTS_ENABLE))
|
|
|
+ HDD_CTS_ENABLE)) {
|
|
|
value = WNI_CFG_RTS_THRESHOLD_STAMAX;
|
|
|
- else
|
|
|
- return -EIO;
|
|
|
+ } else {
|
|
|
+ ret = -EIO;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
|
WMI_VDEV_PARAM_ENABLE_RTSCTS,
|
|
@@ -8113,7 +8140,8 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
(hHal, WNI_CFG_RTS_THRESHOLD, value) !=
|
|
|
QDF_STATUS_SUCCESS) {
|
|
|
hdd_err("FAILED TO SET RTSCTS");
|
|
|
- return -EIO;
|
|
|
+ ret = -EIO;
|
|
|
+ goto free;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -8130,7 +8158,8 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
set_value);
|
|
|
if (set_value > eHT_CHANNEL_WIDTH_80MHZ) {
|
|
|
hdd_err("Invalid channel width 0->20 1->40 2->80");
|
|
|
- return -EINVAL;
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
}
|
|
|
|
|
|
if ((WNI_CFG_CHANNEL_BONDING_MODE_DISABLE !=
|
|
@@ -8138,42 +8167,47 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
nChannelBondingMode5GHz)))
|
|
|
chwidth = true;
|
|
|
|
|
|
- sme_get_config_param(hHal, &smeConfig);
|
|
|
+ sme_get_config_param(hHal, sme_config);
|
|
|
switch (set_value) {
|
|
|
case eHT_CHANNEL_WIDTH_20MHZ:
|
|
|
- smeConfig.csrConfig.channelBondingMode5GHz =
|
|
|
+ sme_config->csrConfig.channelBondingMode5GHz =
|
|
|
WNI_CFG_CHANNEL_BONDING_MODE_DISABLE;
|
|
|
break;
|
|
|
case eHT_CHANNEL_WIDTH_40MHZ:
|
|
|
- if (chwidth)
|
|
|
- smeConfig.csrConfig.
|
|
|
+ if (chwidth) {
|
|
|
+ sme_config->csrConfig.
|
|
|
channelBondingMode5GHz =
|
|
|
phddctx->config->
|
|
|
nChannelBondingMode5GHz;
|
|
|
- else
|
|
|
- return -EINVAL;
|
|
|
+ } else {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
|
|
|
break;
|
|
|
case eHT_CHANNEL_WIDTH_80MHZ:
|
|
|
- if (chwidth)
|
|
|
- smeConfig.csrConfig.
|
|
|
+ if (chwidth) {
|
|
|
+ sme_config->csrConfig.
|
|
|
channelBondingMode5GHz =
|
|
|
phddctx->config->
|
|
|
nChannelBondingMode5GHz;
|
|
|
- else
|
|
|
- return -EINVAL;
|
|
|
+ } else {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
- return -EINVAL;
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
}
|
|
|
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
|
WMI_VDEV_PARAM_CHWIDTH,
|
|
|
set_value, VDEV_CMD);
|
|
|
if (!ret)
|
|
|
- sme_update_config(hHal, &smeConfig);
|
|
|
+ sme_update_config(hHal, sme_config);
|
|
|
|
|
|
break;
|
|
|
}
|
|
@@ -8546,8 +8580,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_PAID_MATCH:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
|
|
|
hdd_debug("WMI_VDEV_PPS_PAID_MATCH val %d ",
|
|
|
set_value);
|
|
@@ -8559,8 +8595,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_GID_MATCH:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
hdd_debug("WMI_VDEV_PPS_GID_MATCH val %d ",
|
|
|
set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8571,8 +8609,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_EARLY_TIM_CLEAR:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
hdd_debug(" WMI_VDEV_PPS_EARLY_TIM_CLEAR val %d ",
|
|
|
set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8583,8 +8623,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_EARLY_DTIM_CLEAR:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
hdd_debug("WMI_VDEV_PPS_EARLY_DTIM_CLEAR val %d",
|
|
|
set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8595,8 +8637,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_EOF_PAD_DELIM:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
hdd_debug("WMI_VDEV_PPS_EOF_PAD_DELIM val %d ",
|
|
|
set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8607,8 +8651,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_MACADDR_MISMATCH:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
hdd_debug("WMI_VDEV_PPS_MACADDR_MISMATCH val %d ",
|
|
|
set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8619,8 +8665,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_DELIM_CRC_FAIL:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
hdd_debug("WMI_VDEV_PPS_DELIM_CRC_FAIL val %d ",
|
|
|
set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8631,8 +8679,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_GID_NSTS_ZERO:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
hdd_debug("WMI_VDEV_PPS_GID_NSTS_ZERO val %d ",
|
|
|
set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8643,8 +8693,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_RSSI_CHECK:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
hdd_debug("WMI_VDEV_PPS_RSSI_CHECK val %d ",
|
|
|
set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8655,8 +8707,10 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
|
|
|
case WE_PPS_5G_EBT:
|
|
|
{
|
|
|
- if (pAdapter->device_mode != QDF_STA_MODE)
|
|
|
- return -EINVAL;
|
|
|
+ if (pAdapter->device_mode != QDF_STA_MODE) {
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
+ }
|
|
|
|
|
|
hdd_debug("WMI_VDEV_PPS_5G_EBT val %d", set_value);
|
|
|
ret = wma_cli_set_command(pAdapter->sessionId,
|
|
@@ -8849,7 +8903,8 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
if (!((set_value >= CFG_CONC_SYSTEM_PREF_MIN) &&
|
|
|
(set_value <= CFG_CONC_SYSTEM_PREF_MAX))) {
|
|
|
hdd_err("Invalid system preference %d", set_value);
|
|
|
- return -EINVAL;
|
|
|
+ ret = -EINVAL;
|
|
|
+ goto free;
|
|
|
}
|
|
|
|
|
|
/* hdd_ctx, hdd_ctx->config are already checked for null */
|
|
@@ -8880,6 +8935,8 @@ static int __iw_setint_getnone(struct net_device *dev,
|
|
|
}
|
|
|
}
|
|
|
EXIT();
|
|
|
+free:
|
|
|
+ qdf_mem_free(sme_config);
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
@@ -9113,9 +9170,16 @@ static int __iw_setnone_getint(struct net_device *dev,
|
|
|
tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
|
|
|
int *value = (int *)extra;
|
|
|
int ret;
|
|
|
- tSmeConfigParams smeConfig;
|
|
|
+ tSmeConfigParams *sme_config;
|
|
|
hdd_context_t *hdd_ctx;
|
|
|
|
|
|
+ sme_config = qdf_mem_malloc(sizeof(*sme_config));
|
|
|
+ if (!sme_config) {
|
|
|
+ hdd_err("failed to allocate memory for sme_config");
|
|
|
+ return -ENOMEM;
|
|
|
+ }
|
|
|
+ qdf_mem_zero(sme_config, sizeof(*sme_config));
|
|
|
+
|
|
|
ENTER_DEV(dev);
|
|
|
|
|
|
hdd_ctx = WLAN_HDD_GET_CTX(pAdapter);
|
|
@@ -9130,9 +9194,9 @@ static int __iw_setnone_getint(struct net_device *dev,
|
|
|
switch (value[0]) {
|
|
|
case WE_GET_11D_STATE:
|
|
|
{
|
|
|
- sme_get_config_param(hHal, &smeConfig);
|
|
|
+ sme_get_config_param(hHal, sme_config);
|
|
|
|
|
|
- *value = smeConfig.csrConfig.Is11dSupportEnabled;
|
|
|
+ *value = sme_config->csrConfig.Is11dSupportEnabled;
|
|
|
|
|
|
hdd_debug("11D state=%d!!", *value);
|
|
|
|
|
@@ -9170,8 +9234,8 @@ static int __iw_setnone_getint(struct net_device *dev,
|
|
|
|
|
|
case WE_GET_NSS:
|
|
|
{
|
|
|
- sme_get_config_param(hHal, &smeConfig);
|
|
|
- *value = (smeConfig.csrConfig.enable2x2 == 0) ? 1 : 2;
|
|
|
+ sme_get_config_param(hHal, sme_config);
|
|
|
+ *value = (sme_config->csrConfig.enable2x2 == 0) ? 1 : 2;
|
|
|
if (policy_mgr_is_current_hwmode_dbs(hdd_ctx->hdd_psoc))
|
|
|
*value = *value-1;
|
|
|
hdd_debug("GET_NSS: Current NSS:%d", *value);
|
|
@@ -9602,6 +9666,7 @@ static int __iw_setnone_getint(struct net_device *dev,
|
|
|
}
|
|
|
}
|
|
|
EXIT();
|
|
|
+ qdf_mem_free(sme_config);
|
|
|
return ret;
|
|
|
}
|
|
|
|