From: Veerendranath Jakkam Date: Sun, 16 Mar 2025 18:22:38 +0000 (+0530) Subject: Add QCA vendor attribute to indicate uplink TID for classified flows X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25feced2b9e7a5019b298eaeb5ab4f089373f5de;p=thirdparty%2Fhostap.git 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 --- 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,