git: 6c717a28505d - stable/12 - iflib: Allow drivers to determine which queue to TX on

From: Eric Joyner <erj_at_FreeBSD.org>
Date: Wed, 19 Oct 2022 23:23:42 UTC
The branch stable/12 has been updated by erj:

URL: https://cgit.FreeBSD.org/src/commit/?id=6c717a28505d3e77a0c3780ca1f65eb85b538eb9

commit 6c717a28505d3e77a0c3780ca1f65eb85b538eb9
Author:     Eric Joyner <erj@FreeBSD.org>
AuthorDate: 2021-07-29 23:24:14 +0000
Commit:     Eric Joyner <erj@FreeBSD.org>
CommitDate: 2022-10-19 22:23:33 +0000

    iflib: Allow drivers to determine which queue to TX on
    
    Adds a new function pointer to struct if_txrx in order to allow
    drivers to set their own function that will determine which queue
    a packet should be sent on.
    
    Since this includes a kernel ABI change, bump the __FreeBSD_version
    as well.
    
    (This motivation behind this is to allow the driver to examine the
    UP in the VLAN tag and determine which queue to TX on based on
    that, in support of HW TX traffic shaping.)
    
    Signed-off-by: Eric Joyner <erj@FreeBSD.org>
    
    Reviewed by:    kbowling@, stallamr@netapp.com
    Tested by:      jeffrey.e.pieper@intel.com
    Sponsored by:   Intel Corporation
    Differential Revision:  https://reviews.freebsd.org/D31485
    
    (cherry picked from commit 213e91399b7998554d787bb290109ebe602aa279)
---
 sys/net/iflib.c | 12 ++++++++----
 sys/net/iflib.h | 10 ++++++++++
 sys/sys/param.h |  2 +-
 3 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/sys/net/iflib.c b/sys/net/iflib.c
index 170e502481c8..869985857e4b 100644
--- a/sys/net/iflib.c
+++ b/sys/net/iflib.c
@@ -211,6 +211,7 @@ struct iflib_ctx {
 #define isc_rxd_refill ifc_txrx.ift_rxd_refill
 #define isc_rxd_flush ifc_txrx.ift_rxd_flush
 #define isc_legacy_intr ifc_txrx.ift_legacy_intr
+#define isc_txq_select ifc_txrx.ift_txq_select
 	eventhandler_tag ifc_vlan_attach_event;
 	eventhandler_tag ifc_vlan_detach_event;
 	uint8_t ifc_mac[ETHER_ADDR_LEN];
@@ -4147,11 +4148,14 @@ iflib_if_transmit(if_t ifp, struct mbuf *m)
 	MPASS(m->m_nextpkt == NULL);
 	/* ALTQ-enabled interfaces always use queue 0. */
 	qidx = 0;
-	if ((NTXQSETS(ctx) > 1) && M_HASHTYPE_GET(m) && !ALTQ_IS_ENABLED(&ifp->if_snd))
+	/* Use driver-supplied queue selection method if it exists */
+	if (ctx->isc_txq_select)
+		qidx = ctx->isc_txq_select(ctx->ifc_softc, m);
+	/* If not, use iflib's standard method */
+	else if ((NTXQSETS(ctx) > 1) && M_HASHTYPE_GET(m) && !ALTQ_IS_ENABLED(&ifp->if_snd))
 		qidx = QIDX(ctx, m);
-	/*
-	 * XXX calculate buf_ring based on flowid (divvy up bits?)
-	 */
+
+	/* Set TX queue */
 	txq = &ctx->ifc_txqs[qidx];
 
 #ifdef DRIVER_BACKPRESSURE
diff --git a/sys/net/iflib.h b/sys/net/iflib.h
index ffbae937808c..7c1fd3703ad2 100644
--- a/sys/net/iflib.h
+++ b/sys/net/iflib.h
@@ -187,6 +187,7 @@ typedef struct if_txrx {
 	void (*ift_rxd_refill) (void * , if_rxd_update_t iru);
 	void (*ift_rxd_flush) (void *, uint16_t qsidx, uint8_t flidx, qidx_t pidx);
 	int (*ift_legacy_intr) (void *);
+	qidx_t (*ift_txq_select) (void *, struct mbuf *);
 } *if_txrx_t;
 
 typedef struct if_softc_ctx {
@@ -391,6 +392,15 @@ typedef enum {
  */
 #define IFLIB_PSEUDO_ETHER	0x80000
 
+/* The following IFLIB_FEATURE_* defines are for driver modules to determine
+ * what features this version of iflib supports. They shall be defined to the
+ * first __FreeBSD_version that introduced the feature.
+ */
+/*
+ * Driver can set its own TX queue selection function
+ * as ift_txq_select in struct if_txrx
+ */
+#define IFLIB_FEATURE_QUEUE_SELECT	1203508
 
 /*
  * These enum values are used in iflib_needs_restart to indicate to iflib
diff --git a/sys/sys/param.h b/sys/sys/param.h
index 742b91b3dc14..cb063fa347b5 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -60,7 +60,7 @@
  *		in the range 5 to 9.
  */
 #undef __FreeBSD_version
-#define __FreeBSD_version 1203507	/* Master, propagated to newvers */
+#define __FreeBSD_version 1203508	/* Master, propagated to newvers */
 
 /*
  * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,