Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 09 Aug 2026 08:40:34 +0000
From:      Kevin Bowling <kbowling@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 6a1703c112ff - main - ixgbe: Add missing mailbox API 1.6 definition
Message-ID:  <6a783d02.25bc2.28e1e87a@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by kbowling:

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

commit 6a1703c112ff2904feb39288f0746c8f0a04f938
Author:     Kevin Bowling <kbowling@FreeBSD.org>
AuthorDate: 2026-08-09 08:35:58 +0000
Commit:     Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2026-08-09 08:39:21 +0000

    ixgbe: Add missing mailbox API 1.6 definition
    
    The SR-IOV status change reports mailbox API 1.6 but omitted its enum
    definition, leaving main unable to compile.
    
    API 1.6 is an established ixgbe mailbox wire revision.  Add it at the
    end of the revision enum, before the unknown sentinel as required by
    the stable numbering contract.  Naming the revision does not enable
    negotiation or operations which will come with the E610 support.
    
    Reported by:    Herbert J. Skuhra <herbert@gojira.at>
    Fixes:  c30021fe0df9 ("ixgbe: Report SR-IOV VF status")
---
 sys/dev/ixgbe/ixgbe_mbx.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/dev/ixgbe/ixgbe_mbx.h b/sys/dev/ixgbe/ixgbe_mbx.h
index fc6831f67b34..827e74a2e397 100644
--- a/sys/dev/ixgbe/ixgbe_mbx.h
+++ b/sys/dev/ixgbe/ixgbe_mbx.h
@@ -128,6 +128,7 @@ enum ixgbe_pfvf_api_rev {
 	/* API 1.4 is being used in the upstream for IPsec */
 	ixgbe_mbox_api_14,	/* API version 1.4, linux/freebsd VF driver */
 	ixgbe_mbox_api_15,	/* API version 1.5, linux/freebsd VF driver */
+	ixgbe_mbox_api_16,	/* API version 1.6, linux/freebsd VF driver */
 	/* This value should always be last */
 	ixgbe_mbox_api_unknown,	/* indicates that API version is not known */
 };


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a783d02.25bc2.28e1e87a>