|
@@ -1027,6 +1027,7 @@ void dp_rx_process_mic_error(struct dp_soc *soc, qdf_nbuf_t nbuf,
|
|
|
uint16_t rx_seq, fragno;
|
|
|
unsigned int tid;
|
|
|
QDF_STATUS status;
|
|
|
+ struct cdp_rx_mic_err_info mic_failure_info;
|
|
|
|
|
|
if (!hal_rx_msdu_end_first_msdu_get(rx_tlv_hdr))
|
|
|
return;
|
|
@@ -1067,9 +1068,21 @@ void dp_rx_process_mic_error(struct dp_soc *soc, qdf_nbuf_t nbuf,
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ qdf_copy_macaddr((struct qdf_mac_addr *)&mic_failure_info.da_mac_addr,
|
|
|
+ (struct qdf_mac_addr *)&wh->i_addr1);
|
|
|
+ qdf_copy_macaddr((struct qdf_mac_addr *)&mic_failure_info.ta_mac_addr,
|
|
|
+ (struct qdf_mac_addr *)&wh->i_addr2);
|
|
|
+ mic_failure_info.key_id = 0;
|
|
|
+ mic_failure_info.multicast =
|
|
|
+ IEEE80211_IS_MULTICAST(wh->i_addr1);
|
|
|
+ qdf_mem_zero(mic_failure_info.tsc, MIC_SEQ_CTR_SIZE);
|
|
|
+ mic_failure_info.frame_type = cdp_rx_frame_type_802_11;
|
|
|
+ mic_failure_info.data = (uint8_t *)wh;
|
|
|
+ mic_failure_info.vdev_id = vdev->vdev_id;
|
|
|
+
|
|
|
tops = pdev->soc->cdp_soc.ol_ops;
|
|
|
if (tops->rx_mic_error)
|
|
|
- tops->rx_mic_error(pdev->ctrl_pdev, vdev->vdev_id, wh);
|
|
|
+ tops->rx_mic_error(pdev->ctrl_pdev, &mic_failure_info);
|
|
|
|
|
|
fail:
|
|
|
qdf_nbuf_free(nbuf);
|