Explorar o código

qcacld-3.0: Log info about deauth/disassoc sent over air

qcacld-2.0 to qcacld-3.0 propagation.

Log success or failure status whether disassoc/deauth sent successfully
over the air.

Change-Id: I527bd35546eb21157498f235fe74710dd3f7688e
CRs-Fixed: 1016866
(cherry picked from commit d081fef10c8440830cea8d6e598087d5021687ae)
Mahesh A Saptasagar %!s(int64=9) %!d(string=hai) anos
pai
achega
fb33542c94
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      core/mac/src/pe/lim/lim_send_management_frames.c

+ 4 - 0
core/mac/src/pe/lim/lim_send_management_frames.c

@@ -2520,12 +2520,16 @@ end:
 QDF_STATUS lim_disassoc_tx_complete_cnf(tpAniSirGlobal pMac,
 					uint32_t txCompleteSuccess)
 {
+	lim_log(pMac, LOG1,
+		FL("txCompleteSuccess: %d"), txCompleteSuccess);
 	return lim_send_disassoc_cnf(pMac);
 }
 
 QDF_STATUS lim_deauth_tx_complete_cnf(tpAniSirGlobal pMac,
 				      uint32_t txCompleteSuccess)
 {
+	lim_log(pMac, LOG1,
+		FL("txCompleteSuccess: %d"), txCompleteSuccess);
 	return lim_send_deauth_cnf(pMac);
 }