diff options
| -rw-r--r-- | core/hdd/src/wlan_hdd_softap_tx_rx.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/hdd/src/wlan_hdd_softap_tx_rx.c b/core/hdd/src/wlan_hdd_softap_tx_rx.c index 601617afe310..09761ab4b487 100644 --- a/core/hdd/src/wlan_hdd_softap_tx_rx.c +++ b/core/hdd/src/wlan_hdd_softap_tx_rx.c @@ -319,6 +319,13 @@ static int __hdd_softap_hard_start_xmit(struct sk_buff *skb, "%s: STA %d is unregistered", __func__, STAId); goto drop_pkt; + } else if (true == pAdapter->aStaInfo[STAId]. + isDeauthInProgress) { + QDF_TRACE(QDF_MODULE_ID_HDD_SAP_DATA, + QDF_TRACE_LEVEL_WARN, + "%s: STA %d deauth in progress", __func__, + STAId); + goto drop_pkt; } if ((OL_TXRX_PEER_STATE_CONN != |
