git: 30909e8f561d - stable/15 - ixgbe: Correct the PFVFRSSRK index range comment
Kevin Bowling <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a8a3dba.25dc9.7f18163f__36392.0665274904$1787444700$gmane$org@gitrepo.freebsd.org> |
The branch stable/15 has been updated by kbowling: URL: https://cgit.FreeBSD.org/src/commit/?id=30909e8f561d0d5ed767e20d8501dae915cfc441 commit 30909e8f561d0d5ed767e20d8501dae915cfc441 Author: Kevin Bowling <[email protected]> AuthorDate: 2026-08-16 01:35:44 +0000 Commit: Kevin Bowling <[email protected]> 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))