Prechádzať zdrojové kódy

qcacmn: Fix for Beacon burstmode issue

Fix beacon burst mode issue in FILS Discovery disable case.

Change-Id: Ieb711577a761ed80d6865b14563d80277857dfce
CRs-Fixed: 2180991
Subrat Mishra 7 rokov pred
rodič
commit
172974d1c3

+ 0 - 2
umac/cmn_services/obj_mgr/inc/wlan_objmgr_vdev_obj.h

@@ -150,8 +150,6 @@
 #define WLAN_VDEV_FEXT_SON_SPL_RPT          0x00800000
 /* SON IE update in MGMT frame */
 #define WLAN_VDEV_FEXT_SON_INFO_UPDATE      0x01000000
-/* FILS AEAD in MGMT frame */
-#define WLAN_VDEV_FEXT_FILS                 0x02000000
 
 /* VDEV OP flags  */
   /* if the vap destroyed by user */

+ 4 - 1
umac/global_umac_dispatcher/lmac_if/inc/wlan_lmac_if_def.h

@@ -864,6 +864,7 @@ struct wlan_lmac_if_atf_rx_ops {
 #ifdef WLAN_SUPPORT_FILS
 /**
  * struct wlan_lmac_if_fd_rx_ops - FILS Discovery specific Rx function pointers
+ * @fd_is_fils_enable:      FILS enabled or not
  * @fd_alloc:               Allocate FD buffer
  * @fd_stop:                Stop and free deferred FD buffer
  * @fd_free:                Free FD frame buffer
@@ -871,10 +872,12 @@ struct wlan_lmac_if_atf_rx_ops {
  * @fd_swfda_handler:       SWFDA event handler
  */
 struct wlan_lmac_if_fd_rx_ops {
+	uint8_t (*fd_is_fils_enable)(struct wlan_objmgr_vdev *vdev);
 	void (*fd_alloc)(struct wlan_objmgr_vdev *vdev);
 	void (*fd_stop)(struct wlan_objmgr_vdev *vdev);
 	void (*fd_free)(struct wlan_objmgr_vdev *vdev);
-	uint32_t (*fd_get_valid_fd_period)(struct wlan_objmgr_vdev *vdev);
+	uint32_t (*fd_get_valid_fd_period)(struct wlan_objmgr_vdev *vdev,
+					   uint8_t *is_modified);
 	QDF_STATUS (*fd_swfda_handler)(struct wlan_objmgr_vdev *vdev);
 };
 #endif

+ 1 - 0
umac/global_umac_dispatcher/lmac_if/src/wlan_lmac_if.c

@@ -132,6 +132,7 @@ wlan_lmac_if_fd_rx_ops_register(struct wlan_lmac_if_rx_ops *rx_ops)
 {
 	struct wlan_lmac_if_fd_rx_ops *fd_rx_ops = &rx_ops->fd_rx_ops;
 
+	fd_rx_ops->fd_is_fils_enable = tgt_fd_is_fils_enable;
 	fd_rx_ops->fd_alloc = tgt_fd_alloc;
 	fd_rx_ops->fd_stop = tgt_fd_stop;
 	fd_rx_ops->fd_free = tgt_fd_free;