]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Rename moderate latency level to XR latency level in vendor attributes
authorNirav Shah <quic_nnshah@quicinc.com>
Tue, 25 Jan 2022 04:56:52 +0000 (10:26 +0530)
committerJouni Malinen <j@w1.fi>
Fri, 4 Feb 2022 16:10:23 +0000 (18:10 +0200)
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 <quic_jouni@quicinc.com>
src/common/qca-vendor.h

index 6ab9d1bd8b68838e8b2a641e2f705e7fd69e9856..83165427b023801dc106aba4f7d0ec4e77a5f7e6 100644 (file)
@@ -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,