From 1bac151eaf7637ffea87b28e3169fb2c60f7f0c1 Mon Sep 17 00:00:00 2001 From: Kiran Kumar Lokere Date: Wed, 15 Aug 2018 12:01:24 -0700 Subject: [PATCH] Change the ADDBA buffer size attribute type to U16 from U8 The max supported ADDBA buffer size value is 256, so change the buffer size attribute type to U16 to configure the testbed device to use the 256 buffer size in ADDBA negotiation in 11ax testing. This attribute is used only to configure a testbed device and the old definition of this attribute was not used in any deployed implementation hence it is still justifiable to change the definition. Signed-off-by: Jouni Malinen --- src/common/qca-vendor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index eaa8b7660..e89f27665 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -5442,10 +5442,10 @@ enum qca_wlan_vendor_attr_wifi_test_config { */ QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADD_DEL_BA_SESSION = 7, - /* 8-bit unsigned value to configure the buffer size in addba + /* 16-bit unsigned value to configure the buffer size in addba * request and response frames. * This attribute is used to configure the testbed device. - * The range of the value is 0 to 255. + * The range of the value is 0 to 256. */ QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADDBA_BUFF_SIZE = 8,