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 <[email protected]>
AuthorDate: 2021-07-30 02:32:22 +0000
Commit:     Kevin Bowling <[email protected]>
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
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to