Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Jul 2021 02:34:41 GMT
From:      Kevin Bowling <kbowling@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: e1d7668f872d - stable/12 - ixgbe: Fix the build
Message-ID:  <202107300234.16U2Yflv003060@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@FreeBSD.org>
AuthorDate: 2021-07-30 02:32:22 +0000
Commit:     Kevin Bowling <kbowling@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107300234.16U2Yflv003060>