The branch main has been updated by kbowling: URL: https://cgit.FreeBSD.org/src/commit/?id=224f7ab8b4706653c7d3f78e624bc36c97679f30
commit 224f7ab8b4706653c7d3f78e624bc36c97679f30 Author: Radoslaw Tyl <[email protected]> AuthorDate: 2024-09-20 02:54:21 +0000 Commit: Kevin Bowling <[email protected]> CommitDate: 2024-09-20 02:55:35 +0000 ixgbe: add reset count field to HW struct DPDK commit message net/ixgbe/base: add reset count field to HW struct Add fw_rst_cnt to store the number of resets after fw update. This value is required to detect if the EICR.MNG event occurred after firmware update reset. Signed-off-by: Radoslaw Tyl <[email protected]> Reviewed-by: Piotr Skajewski <[email protected]> Reviewed-by: Slawomir Mrozowicz <[email protected]> Reviewed-by: Alice Michael <[email protected]> Obtained from: DPDK (9ab0e9c) MFC after: 1 week --- sys/dev/ixgbe/ixgbe_type.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/ixgbe/ixgbe_type.h b/sys/dev/ixgbe/ixgbe_type.h index ccfce45500d9..56d4863c8e07 100644 --- a/sys/dev/ixgbe/ixgbe_type.h +++ b/sys/dev/ixgbe/ixgbe_type.h @@ -4201,6 +4201,7 @@ struct ixgbe_hw { bool allow_unsupported_sfp; bool wol_enabled; bool need_crosstalk_fix; + u32 fw_rst_cnt; }; #define ixgbe_call_func(hw, func, params, error) \
