|
@@ -688,8 +688,6 @@ int wlan_cfg80211_tdls_mgmt(struct wlan_objmgr_vdev *vdev,
|
|
|
struct osif_tdls_vdev *tdls_priv;
|
|
|
int status;
|
|
|
unsigned long rc;
|
|
|
- int max_sta_failed = 0;
|
|
|
- struct tdls_validate_action_req chk_frame;
|
|
|
struct tdls_set_responder_req set_responder;
|
|
|
|
|
|
status = wlan_cfg80211_tdls_validate_mac_addr(peer_mac);
|
|
@@ -715,16 +713,12 @@ int wlan_cfg80211_tdls_mgmt(struct wlan_objmgr_vdev *vdev,
|
|
|
/*prepare the request */
|
|
|
|
|
|
/* Validate the management Request */
|
|
|
- chk_frame.vdev = vdev;
|
|
|
- chk_frame.action_code = action_code;
|
|
|
- qdf_mem_copy(chk_frame.peer_mac, peer_mac, QDF_MAC_ADDR_SIZE);
|
|
|
- chk_frame.dialog_token = dialog_token;
|
|
|
- chk_frame.action_code = action_code;
|
|
|
- chk_frame.status_code = status_code;
|
|
|
- chk_frame.len = len;
|
|
|
- chk_frame.max_sta_failed = max_sta_failed;
|
|
|
-
|
|
|
- mgmt_req.chk_frame = &chk_frame;
|
|
|
+ mgmt_req.chk_frame.action_code = action_code;
|
|
|
+ qdf_mem_copy(mgmt_req.chk_frame.peer_mac, peer_mac, QDF_MAC_ADDR_SIZE);
|
|
|
+ mgmt_req.chk_frame.dialog_token = dialog_token;
|
|
|
+ mgmt_req.chk_frame.action_code = action_code;
|
|
|
+ mgmt_req.chk_frame.status_code = status_code;
|
|
|
+ mgmt_req.chk_frame.len = len;
|
|
|
|
|
|
mgmt_req.vdev = vdev;
|
|
|
mgmt_req.vdev_id = wlan_vdev_get_id(vdev);
|
|
@@ -736,7 +730,7 @@ int wlan_cfg80211_tdls_mgmt(struct wlan_objmgr_vdev *vdev,
|
|
|
mgmt_req.tdls_mgmt.frame_type = action_code;
|
|
|
mgmt_req.tdls_mgmt.len = len;
|
|
|
mgmt_req.tdls_mgmt.peer_capability = peer_capability;
|
|
|
- mgmt_req.tdls_mgmt.status_code = chk_frame.status_code;
|
|
|
+ mgmt_req.tdls_mgmt.status_code = mgmt_req.chk_frame.status_code;
|
|
|
|
|
|
/*populate the additional IE's */
|
|
|
mgmt_req.cmd_buf = buf;
|
|
@@ -773,11 +767,6 @@ int wlan_cfg80211_tdls_mgmt(struct wlan_objmgr_vdev *vdev,
|
|
|
cfg80211_debug("Mgmt Tx Completion status %ld TxCompletion %u",
|
|
|
rc, tdls_priv->mgmt_tx_completion_status);
|
|
|
|
|
|
- if (chk_frame.max_sta_failed) {
|
|
|
- status = max_sta_failed;
|
|
|
- goto error_mgmt_req;
|
|
|
- }
|
|
|
-
|
|
|
if (TDLS_SETUP_RESPONSE == action_code ||
|
|
|
TDLS_SETUP_CONFIRM == action_code) {
|
|
|
qdf_mem_copy(set_responder.peer_mac, peer_mac,
|