diff options
| -rwxr-xr-x | fw/wmi_unified.h | 11 | ||||
| -rwxr-xr-x | fw/wmi_version.h | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/fw/wmi_unified.h b/fw/wmi_unified.h index 28a9793735db..ea97d6e01ae0 100755 --- a/fw/wmi_unified.h +++ b/fw/wmi_unified.h @@ -8464,6 +8464,17 @@ typedef enum { */ WMI_VDEV_PARAM_TX_RETRIES_BEFORE_RTS_PER_AC, /* 0x82 */ + /** + * Parameter to enable/disable AMSDU aggregation size auto-selection logic. + * We have logic where AMSDU aggregation size is dynamically decided + * based on MCS. That logic is enabled by default. + * For certain tests, we need a method to disable this optimization, + * and base AMSDU size only on the peer's capability rather than our logic. + * A value of 0 means disable internal optimization, + * 1 means enable internal optimzation. + */ + WMI_VDEV_PARAM_AMSDU_AGGREGATION_SIZE_OPTIMIZATION, /* 0x83 */ + /*=== ADD NEW VDEV PARAM TYPES ABOVE THIS LINE === * The below vdev param types are used for prototyping, and are diff --git a/fw/wmi_version.h b/fw/wmi_version.h index cccd3bf492bb..82a0019fceb4 100755 --- a/fw/wmi_version.h +++ b/fw/wmi_version.h @@ -36,7 +36,7 @@ #define __WMI_VER_MINOR_ 0 /** WMI revision number has to be incremented when there is a * change that may or may not break compatibility. */ -#define __WMI_REVISION_ 535 +#define __WMI_REVISION_ 536 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
