소스 검색

qcacld-3.0: Send deauth frames with MLO MGMT TID after assoc

After association, host sends deauth frames without link agnostic
flag, therefore the deauth frames queued on the inactive link
gets discarded. Host sends management frames with link agnostic
flag only if the VDEV is in UP state. Whereas, during userspace
triggered deauth, the VDEV will be in SUSPEND state. Therefore,
host doesn't set the link agnostic flag.

To fix this, send the management frames with link agnostic flag
whenever the VDEV is active(UP or SUSPEND).

Change-Id: I1a68c53be9c8846a0a0e2e2fc0246e9b49cdc421
CRs-Fixed: 3650329
Surya Prakash Sivaraj 1 년 전
부모
커밋
016106c4dd
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      core/wma/src/wma_data.c

+ 2 - 1
core/wma/src/wma_data.c

@@ -2694,7 +2694,8 @@ QDF_STATUS wma_tx_packet(void *wma_context, void *tx_frame, uint16_t frmLen,
 	mgmt_param.peer_rssi = peer_rssi;
 	if (iface && wlan_vdev_mlme_get_opmode(iface->vdev) == QDF_STA_MODE &&
 	    wlan_vdev_mlme_is_mlo_vdev(iface->vdev) &&
-	    wma_is_vdev_up(vdev_id) && frmType == TXRX_FRM_802_11_MGMT &&
+	    (wlan_vdev_mlme_is_active(iface->vdev) == QDF_STATUS_SUCCESS) &&
+	    frmType == TXRX_FRM_802_11_MGMT &&
 	    pFc->subType != SIR_MAC_MGMT_PROBE_REQ &&
 	    pFc->subType != SIR_MAC_MGMT_AUTH &&
 	    action != (ACTION_CATEGORY_PUBLIC << 8 | TDLS_DISCOVERY_RESPONSE) &&