Selaa lähdekoodia

qcacmn: Add vdev param to enable/disable buffering of mcast frames

Add WMI vdev param to indicate firmware not to buffer mcast frames
even when clients are in power-save.

CRs-Fixed: 2133095
Change-Id: I4fe936e6a490ec8007f909e1ba079bec2f2713cd
Anirban Sirkhell 8 vuotta sitten
vanhempi
sitoutus
101b8b4cde
2 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa
  1. 1 0
      wmi/inc/wmi_unified_param.h
  2. 2 0
      wmi/src/wmi_unified_non_tlv.c

+ 1 - 0
wmi/inc/wmi_unified_param.h

@@ -5664,6 +5664,7 @@ typedef enum {
 	wmi_vdev_param_set_hemu_mode,
 	wmi_vdev_param_set_he_ltf,
 	wmi_vdev_param_set_heop,
+	wmi_vdev_param_disable_cabq,
 
 	wmi_vdev_param_max,
 } wmi_conv_vdev_param_id;

+ 2 - 0
wmi/src/wmi_unified_non_tlv.c

@@ -8987,6 +8987,8 @@ static void populate_vdev_param_non_tlv(uint32_t *vdev_param)
 		WMI_VDEV_PARAM_DISABLE_DYN_BW_RTS;
 	vdev_param[wmi_vdev_param_ampdu_subframe_size_per_ac] =
 		WMI_VDEV_PARAM_AMPDU_SUBFRAME_SIZE_PER_AC;
+	vdev_param[wmi_vdev_param_disable_cabq] =
+		WMI_VDEV_PARAM_DISABLE_CABQ;
 }
 #endif