git: b789ad49b513 - stable/15 - ixv: Remove unused loader tunables
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 22 Aug 2026 00:27:14 UTC
The branch stable/15 has been updated by kbowling:
URL: https://cgit.FreeBSD.org/src/commit/?id=b789ad49b5139cea90c058dcf397fa58f7c9655b
commit b789ad49b5139cea90c058dcf397fa58f7c9655b
Author: Kevin Bowling <kbowling@FreeBSD.org>
AuthorDate: 2026-08-08 11:10:41 +0000
Commit: Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2026-08-22 00:27:04 +0000
ixv: Remove unused loader tunables
The flow_control and hdr_split variables have never been read. VF
flow control is controlled by the PF, while implementing header split
would require receive-path support that ixv does not provide.
(cherry picked from commit 8eeb25899afd7818d99ce1500be27ae8d992131f)
---
sys/dev/ixgbe/if_ixv.c | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/sys/dev/ixgbe/if_ixv.c b/sys/dev/ixgbe/if_ixv.c
index 7fffc5ec00bb..284d2e7b6d9d 100644
--- a/sys/dev/ixgbe/if_ixv.c
+++ b/sys/dev/ixgbe/if_ixv.c
@@ -195,23 +195,6 @@ static driver_t ixv_if_driver = {
"ixv_if", ixv_if_methods, sizeof(struct ixgbe_softc)
};
-/*
- * TUNEABLE PARAMETERS:
- */
-
-/* Flow control setting, default to full */
-static int ixv_flow_control = ixgbe_fc_full;
-TUNABLE_INT("hw.ixv.flow_control", &ixv_flow_control);
-
-/*
- * Header split: this causes the hardware to DMA
- * the header into a separate mbuf from the payload,
- * it can be a performance win in some workloads, but
- * in others it actually hurts, its off by default.
- */
-static int ixv_header_split = false;
-TUNABLE_INT("hw.ixv.hdr_split", &ixv_header_split);
-
#define IXV_VLAN_RETRY_BATCH 4
#define IXV_VLAN_RETRY_WINDOW (8 * SBT_1S)