git: e1d7668f872d - stable/12 - ixgbe: Fix the build
Kevin Bowling
kbowling at FreeBSD.org
Fri Jul 30 02:34:41 UTC 2021
The branch stable/12 has been updated by kbowling (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=e1d7668f872d7c7f9c814c918890bfaaebdee858
commit e1d7668f872d7c7f9c814c918890bfaaebdee858
Author: Kevin Bowling <kbowling at FreeBSD.org>
AuthorDate: 2021-07-30 02:32:22 +0000
Commit: Kevin Bowling <kbowling at FreeBSD.org>
CommitDate: 2021-07-30 02:32:22 +0000
ixgbe: Fix the build
I forgot to amend my commit after dropping CTLFLAG_NEEDGIANT.
Reported by: jenkins
Fixes: 07ab33cfc108
---
sys/dev/ixgbe/if_ix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/ixgbe/if_ix.c b/sys/dev/ixgbe/if_ix.c
index d9fa2f4f77c5..740c8e224653 100644
--- a/sys/dev/ixgbe/if_ix.c
+++ b/sys/dev/ixgbe/if_ix.c
@@ -2564,7 +2564,7 @@ ixgbe_add_device_sysctls(if_ctx_t ctx)
IXGBE_SYSCTL_DESC_ADV_SPEED);
SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "fw_version",
- CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_NEEDGIANT, adapter, 0,
+ CTLTYPE_STRING | CTLFLAG_RD, adapter, 0,
ixgbe_sysctl_print_fw_version, "A", "Prints FW/NVM Versions");
#ifdef IXGBE_DEBUG
More information about the dev-commits-src-all
mailing list