git: f177ff939a91 - main - ixgbe: Correct the PFVFRSSRK index range comment
Kevin Bowling <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a811599.3ea84.552684da__33272.7869901404$1786844593$gmane$org@gitrepo.freebsd.org> |
The branch main has been updated by kbowling: URL: https://cgit.FreeBSD.org/src/commit/?id=f177ff939a91a3d710752438b13aff53d5afc725 commit f177ff939a91a3d710752438b13aff53d5afc725 Author: Kevin Bowling <[email protected]> AuthorDate: 2026-08-16 01:35:44 +0000 Commit: Kevin Bowling <[email protected]> CommitDate: 2026-08-16 01:38:32 +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. MFC after: 1 week Sponsored by: BBOX.io --- 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 6c7ec0cc3d79..3ce32a3a9fe4 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))