git: 30909e8f561d - stable/15 - ixgbe: Correct the PFVFRSSRK index range comment

From: Kevin Bowling <kbowling_at_FreeBSD.org>
Date: Sun, 23 Aug 2026 00:24:26 UTC
The branch stable/15 has been updated by kbowling:

URL: https://cgit.FreeBSD.org/src/commit/?id=30909e8f561d0d5ed767e20d8501dae915cfc441

commit 30909e8f561d0d5ed767e20d8501dae915cfc441
Author:     Kevin Bowling <kbowling@FreeBSD.org>
AuthorDate: 2026-08-16 01:35:44 +0000
Commit:     Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2026-08-23 00:24:12 +0000

    ixgbe: Correct the PFVFRSSRK index range comment
    
    PFVFRSSRK contains ten 32-bit RSS key words, numbered 0 through 9.
    The previous inclusive range incorrectly ended at 10.
    
    Sponsored by:   BBOX.io
    
    (cherry picked from commit f177ff939a91a3d710752438b13aff53d5afc725)
---
 sys/dev/ixgbe/ixgbe_type.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/ixgbe/ixgbe_type.h b/sys/dev/ixgbe/ixgbe_type.h
index 2126b33e0aae..cbe7ae019220 100644
--- a/sys/dev/ixgbe/ixgbe_type.h
+++ b/sys/dev/ixgbe/ixgbe_type.h
@@ -577,7 +577,7 @@ struct ixgbe_nvm_version {
 
 /* Registers for setting up RSS on X550 with SRIOV
  * _p - pool number (0..63)
- * _i - index (0..10 for PFVFRSSRK, 0..15 for PFVFRETA)
+ * _i - index (0..9 for PFVFRSSRK, 0..15 for PFVFRETA)
  */
 #define IXGBE_PFVFMRQC(_p)	(0x03400 + ((_p) * 4))
 #define IXGBE_PFVFRSSRK(_i, _p)	(0x018000 + ((_i) * 4) + ((_p) * 0x40))