qcacmn: Add API to get address of mgmt Rx REO snapshots

Add APIs to get address of management rx-reordering snapshots.

CRs-Fixed: 2963485
Change-Id: Idfe13425ad5f95f1a3d92edfc2d6d41aded5aec9
This commit is contained in:
Edayilliam Jayadev
2021-06-07 17:39:45 +05:30
committed by Madan Koyyalamudi
부모 00832d6f5b
커밋 9ccbe5a0fb
8개의 변경된 파일371개의 추가작업 그리고 37개의 파일을 삭제

파일 보기

@@ -217,13 +217,18 @@ struct wlan_target_if_dcs_rx_ops {
* struct wlan_lmac_if_mgmt_txrx_tx_ops - structure of tx function
* pointers for mgmt rx reo
* @read_mgmt_rx_reo_snapshot: Read rx-reorder snapshots
* @get_mgmt_rx_reo_snapshot_address: Get rx-reorder snapshot address
* @mgmt_rx_reo_filter_config: Configure MGMT Rx REO filter
*/
struct wlan_lmac_if_mgmt_rx_reo_tx_ops {
QDF_STATUS (*read_mgmt_rx_reo_snapshot)
(struct mgmt_rx_reo_snapshot *address,
enum mgmt_rx_reo_snapshot_id id,
enum mgmt_rx_reo_shared_snapshot_id id,
struct mgmt_rx_reo_snapshot_params *value);
QDF_STATUS (*get_mgmt_rx_reo_snapshot_address)
(struct wlan_objmgr_pdev *pdev,
enum mgmt_rx_reo_shared_snapshot_id id,
struct mgmt_rx_reo_snapshot **address);
QDF_STATUS (*mgmt_rx_reo_filter_config)(
struct wlan_objmgr_pdev *pdev,
struct mgmt_rx_reo_filter *filter);