|
@@ -1524,14 +1524,9 @@ lim_send_assoc_rsp_mgmt_frame(
|
|
|
status);
|
|
|
}
|
|
|
|
|
|
- if (subtype == LIM_ASSOC)
|
|
|
- pe_debug("*** Sending Assoc Resp status %d aid %d to",
|
|
|
- status_code, aid);
|
|
|
- else
|
|
|
- pe_debug("*** Sending ReAssoc Resp status %d aid %d to",
|
|
|
- status_code, aid);
|
|
|
-
|
|
|
- lim_print_mac_addr(mac_ctx, mac_hdr->da, LOGD);
|
|
|
+ pe_nofl_debug("Assoc rsp TX: vdev %d subtype %d to %pM seq num %d status %d aid %d",
|
|
|
+ pe_session->vdev_id, subtype, mac_hdr->da,
|
|
|
+ mac_ctx->mgmtSeqNum, status_code, aid);
|
|
|
|
|
|
if (addn_ie_len && addn_ie_len <= WNI_CFG_ASSOC_RSP_ADDNIE_DATA_LEN)
|
|
|
qdf_mem_copy(frame + sizeof(tSirMacMgmtHdr) + payload,
|
|
@@ -1742,7 +1737,7 @@ static QDF_STATUS lim_assoc_tx_complete_cnf(void *context,
|
|
|
uint16_t reason_code;
|
|
|
struct mac_context *mac_ctx = (struct mac_context *)context;
|
|
|
|
|
|
- pe_nofl_info("Assoc TX %s",
|
|
|
+ pe_nofl_info("Assoc req TX: %s",
|
|
|
(tx_complete == WMI_MGMT_TX_COMP_TYPE_COMPLETE_OK) ?
|
|
|
"success" : "fail");
|
|
|
|
|
@@ -2415,7 +2410,7 @@ lim_send_assoc_req_mgmt_frame(struct mac_context *mac_ctx,
|
|
|
MTRACE(qdf_trace(QDF_MODULE_ID_PE, TRACE_CODE_TX_MGMT,
|
|
|
pe_session->peSessionId, mac_hdr->fc.subType));
|
|
|
|
|
|
- pe_nofl_info("Assoc TX vdev %d to %pM seq num %d", pe_session->vdev_id,
|
|
|
+ pe_nofl_info("Assoc req TX: vdev %d to %pM seq num %d", pe_session->vdev_id,
|
|
|
pe_session->bssId, mac_ctx->mgmtSeqNum);
|
|
|
QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_DEBUG,
|
|
|
frame, (uint16_t)(sizeof(tSirMacMgmtHdr) + payload));
|
|
@@ -2537,7 +2532,7 @@ static QDF_STATUS lim_auth_tx_complete_cnf(void *context,
|
|
|
uint16_t auth_ack_status;
|
|
|
uint16_t reason_code;
|
|
|
|
|
|
- pe_nofl_info("Auth TX %s",
|
|
|
+ pe_nofl_info("Auth TX: %s",
|
|
|
(tx_complete == WMI_MGMT_TX_COMP_TYPE_COMPLETE_OK) ?
|
|
|
"success" : "fail");
|
|
|
if (tx_complete == WMI_MGMT_TX_COMP_TYPE_COMPLETE_OK) {
|
|
@@ -2833,7 +2828,7 @@ alloc_packet:
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- pe_nofl_info("Auth TX seq %d seq num %d status %d WEP %d to " QDF_MAC_ADDR_STR,
|
|
|
+ pe_nofl_info("Auth TX: seq %d seq num %d status %d WEP %d to " QDF_MAC_ADDR_STR,
|
|
|
auth_frame->authTransactionSeqNumber, mac_ctx->mgmtSeqNum,
|
|
|
auth_frame->authStatusCode, mac_hdr->fc.wep,
|
|
|
QDF_MAC_ADDR_ARRAY(mac_hdr->da));
|