Forráskód Böngészése

qcacld-3.0: Introduce ucfg_dp_is_local_pkt_capture_enabled()

Introduce ucfg_dp_is_local_pkt_capture_enabled()

Change-Id: I0350452ff36b212bbee94da4cbe5adee37c50de2
CRs-Fixed: 3415854
Srinivas Girigowda 2 éve
szülő
commit
12352b5a73

+ 20 - 1
components/dp/dispatcher/inc/wlan_dp_ucfg_api.h

@@ -1493,4 +1493,23 @@ ucfg_dp_get_per_link_peer_stats(ol_txrx_soc_handle soc, uint8_t vdev_id,
 				struct cdp_peer_stats *peer_stats,
 				enum cdp_peer_type peer_type,
 				uint8_t num_link);
-#endif /* _WLAN_DP_UCFGi_API_H_ */
+
+#ifdef WLAN_FEATURE_LOCAL_PKT_CAPTURE
+/**
+ * ucfg_dp_is_local_pkt_capture_enabled() - Get local packet capture config
+ * @psoc: pointer to psoc object
+ *
+ * Return: true if local packet capture is enabled from ini
+ *         false otherwise
+ */
+bool
+ucfg_dp_is_local_pkt_capture_enabled(struct wlan_objmgr_psoc *psoc);
+#else
+static inline bool
+ucfg_dp_is_local_pkt_capture_enabled(struct wlan_objmgr_psoc *psoc)
+{
+	return false;
+}
+#endif /* WLAN_FEATURE_LOCAL_PKT_CAPTURE */
+
+#endif /* _WLAN_DP_UCFG_API_H_ */

+ 9 - 0
components/dp/dispatcher/src/wlan_dp_ucfg_api.c

@@ -2429,3 +2429,12 @@ ucfg_dp_get_per_link_peer_stats(ol_txrx_soc_handle soc, uint8_t vdev_id,
 						peer_stats, peer_type,
 						num_link);
 }
+
+#ifdef WLAN_FEATURE_LOCAL_PKT_CAPTURE
+bool ucfg_dp_is_local_pkt_capture_enabled(struct wlan_objmgr_psoc *psoc)
+{
+	void *soc = cds_get_context(QDF_MODULE_ID_SOC);
+
+	return cdp_cfg_get(soc, cfg_dp_local_pkt_capture);
+}
+#endif