From 25feced2b9e7a5019b298eaeb5ab4f089373f5de Mon Sep 17 00:00:00 2001 From: Veerendranath Jakkam Date: Sun, 16 Mar 2025 23:52:38 +0530 Subject: [PATCH] Add QCA vendor attribute to indicate uplink TID for classified flows Add support for indicating uplink TID to be used for classified flows to the driver. Signed-off-by: Veerendranath Jakkam --- src/common/qca-vendor.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 6a3dc50b4..1a536985b 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -18259,11 +18259,16 @@ enum qca_wlan_vendor_attr_flow_stats { * @QCA_WLAN_VENDOR_ATTR_FLOW_CLASSIFY_RESULT_TRAFFIC_TYPE: Mandatory u8 * attribute indicates the traffic type learned for this flow tuple. Uses the * enum qca_traffic_type values. + * + * @QCA_WLAN_VENDOR_ATTR_FLOW_CLASSIFY_RESULT_UL_TID: Optional u8 attribute + * indicates the TID value to be used by the driver in uplink direction for this + * flow tuple. */ enum qca_wlan_vendor_attr_flow_classify_result { QCA_WLAN_VENDOR_ATTR_FLOW_CLASSIFY_RESULT_INVALID = 0, QCA_WLAN_VENDOR_ATTR_FLOW_CLASSIFY_RESULT_FLOW_TUPLE = 1, QCA_WLAN_VENDOR_ATTR_FLOW_CLASSIFY_RESULT_TRAFFIC_TYPE = 2, + QCA_WLAN_VENDOR_ATTR_FLOW_CLASSIFY_RESULT_UL_TID = 3, /* keep last */ QCA_WLAN_VENDOR_ATTR_FLOW_CLASSIFY_RESULT_LAST, -- 2.47.2