|
@@ -1639,9 +1639,51 @@ void pkt_capture_offload_deliver_indication_handler(
|
|
|
struct pkt_capture_tx_hdr_elem_t *ptr_pktcapture_hdr;
|
|
|
struct pkt_capture_tx_hdr_elem_t pktcapture_hdr = {0};
|
|
|
uint32_t txcap_hdr_size = sizeof(struct pkt_capture_tx_hdr_elem_t);
|
|
|
+ struct wlan_objmgr_vdev *vdev;
|
|
|
+ struct pkt_capture_vdev_priv *vdev_priv;
|
|
|
+ struct pkt_capture_frame_filter *frame_filter;
|
|
|
+ QDF_STATUS ret = QDF_STATUS_SUCCESS;
|
|
|
|
|
|
offload_deliver_msg = (struct htt_tx_offload_deliver_ind_hdr_t *)msg;
|
|
|
|
|
|
+ vdev = pkt_capture_get_vdev();
|
|
|
+ ret = pkt_capture_vdev_get_ref(vdev);
|
|
|
+ if (QDF_IS_STATUS_ERROR(ret))
|
|
|
+ return;
|
|
|
+
|
|
|
+ vdev_priv = pkt_capture_vdev_get_priv(vdev);
|
|
|
+ if (!vdev_priv) {
|
|
|
+ pkt_capture_err("vdev priv is NULL");
|
|
|
+ pkt_capture_vdev_put_ref(vdev);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ frame_filter = &vdev_priv->frame_filter;
|
|
|
+
|
|
|
+ nbuf_len = offload_deliver_msg->tx_mpdu_bytes;
|
|
|
+ netbuf = qdf_nbuf_alloc(NULL,
|
|
|
+ roundup(nbuf_len + RESERVE_BYTES, 4),
|
|
|
+ RESERVE_BYTES, 4, false);
|
|
|
+ if (!netbuf) {
|
|
|
+ pkt_capture_vdev_put_ref(vdev);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ qdf_nbuf_put_tail(netbuf, nbuf_len);
|
|
|
+
|
|
|
+ qdf_mem_copy(qdf_nbuf_data(netbuf),
|
|
|
+ buf + sizeof(struct htt_tx_offload_deliver_ind_hdr_t),
|
|
|
+ nbuf_len);
|
|
|
+
|
|
|
+ if (!(frame_filter->data_tx_frame_filter &
|
|
|
+ PKT_CAPTURE_DATA_FRAME_TYPE_ALL) &&
|
|
|
+ !pkt_capture_is_frame_filter_set(
|
|
|
+ netbuf, frame_filter, IEEE80211_FC1_DIR_TODS)) {
|
|
|
+ qdf_nbuf_free(netbuf);
|
|
|
+ pkt_capture_vdev_put_ref(vdev);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
pktcapture_hdr.timestamp = offload_deliver_msg->phy_timestamp_l32;
|
|
|
pktcapture_hdr.preamble = offload_deliver_msg->preamble;
|
|
|
pktcapture_hdr.mcs = offload_deliver_msg->mcs;
|
|
@@ -1661,25 +1703,11 @@ void pkt_capture_offload_deliver_indication_handler(
|
|
|
status = offload_deliver_msg->status;
|
|
|
pkt_format = offload_deliver_msg->format;
|
|
|
|
|
|
- nbuf_len = offload_deliver_msg->tx_mpdu_bytes;
|
|
|
-
|
|
|
- netbuf = qdf_nbuf_alloc(NULL,
|
|
|
- roundup(nbuf_len + RESERVE_BYTES, 4),
|
|
|
- RESERVE_BYTES, 4, false);
|
|
|
-
|
|
|
- if (!netbuf)
|
|
|
- return;
|
|
|
-
|
|
|
- qdf_nbuf_put_tail(netbuf, nbuf_len);
|
|
|
-
|
|
|
- qdf_mem_copy(qdf_nbuf_data(netbuf),
|
|
|
- buf + sizeof(struct htt_tx_offload_deliver_ind_hdr_t),
|
|
|
- nbuf_len);
|
|
|
-
|
|
|
qdf_nbuf_push_head(netbuf, txcap_hdr_size);
|
|
|
|
|
|
ptr_pktcapture_hdr =
|
|
|
(struct pkt_capture_tx_hdr_elem_t *)qdf_nbuf_data(netbuf);
|
|
|
+
|
|
|
qdf_mem_copy(ptr_pktcapture_hdr, &pktcapture_hdr, txcap_hdr_size);
|
|
|
|
|
|
pkt_capture_datapkt_process(
|
|
@@ -1687,5 +1715,7 @@ void pkt_capture_offload_deliver_indication_handler(
|
|
|
netbuf, TXRX_PROCESS_TYPE_DATA_TX,
|
|
|
tid, status, pkt_format, bssid, soc,
|
|
|
offload_deliver_msg->tx_retry_cnt);
|
|
|
+
|
|
|
+ pkt_capture_vdev_put_ref(vdev);
|
|
|
}
|
|
|
#endif
|