From: Nirav Shah Date: Tue, 25 Jan 2022 04:56:52 +0000 (+0530) Subject: Rename moderate latency level to XR latency level in vendor attributes X-Git-Tag: hostap_2_11~2252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2faaa193f3d19e097e95916a63b01df8e23c8f20;p=thirdparty%2Fhostap.git Rename moderate latency level to XR latency level in vendor attributes Currently the moderate latency level is not used. Rename the moderate latency level to XR latency level to be used in XR (extended reality) applications. Signed-off-by: Jouni Malinen --- diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 6ab9d1bd8..83165427b 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -7000,8 +7000,9 @@ enum qca_wlan_vendor_attr_rtplinst { * * @QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_NORMAL: * Default WLAN operation level which throughput orientated. - * @QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_MODERATE: - * Use moderate level to improve latency by limit scan duration. + * @QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_XR: + * Use XR level to benefit XR (extended reality) application to achieve + * latency and power by via constraint scan/roaming/adaptive PS. * @QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_LOW: * Use low latency level to benifit application like concurrent * downloading or video streaming via constraint scan/adaptive PS. @@ -7012,7 +7013,10 @@ enum qca_wlan_vendor_attr_rtplinst { enum qca_wlan_vendor_attr_config_latency_level { QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_INVALID = 0, QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_NORMAL = 1, - QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_MODERATE = 2, + QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_XR = 2, + /* legacy name */ + QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_MODERATE = + QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_XR, QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_LOW = 3, QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_ULTRALOW = 4,