Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Sep 2024 04:18:21 GMT
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: 5f6964d9fbf6 - main - e1000: drop NEEDGIANT from em_sysctl_debug_info use
Message-ID:  <202409220418.48M4ILjh057400@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kbowling:

URL: https://cgit.FreeBSD.org/src/commit/?id=5f6964d9fbf663f85ee60dae7dfff153b82759d8

commit 5f6964d9fbf663f85ee60dae7dfff153b82759d8
Author:     Kevin Bowling <kbowling@FreeBSD.org>
AuthorDate: 2024-09-22 04:17:30 +0000
Commit:     Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2024-09-22 04:17:30 +0000

    e1000: drop NEEDGIANT from em_sysctl_debug_info use
    
    The write is only used to toggle the debug print function and this is
    otherwise stateless.
    
    MFC after:      1 week
---
 sys/dev/e1000/if_em.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/e1000/if_em.c b/sys/dev/e1000/if_em.c
index 8d140979fbcd..e2d8535143ef 100644
--- a/sys/dev/e1000/if_em.c
+++ b/sys/dev/e1000/if_em.c
@@ -840,7 +840,7 @@ em_if_attach_pre(if_ctx_t ctx)
 	    "Prints FW/NVM Versions");
 
 	SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "debug",
-	    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, sc, 0,
+	    CTLTYPE_INT | CTLFLAG_RW, sc, 0,
 	    em_sysctl_debug_info, "I", "Debug Information");
 
 	SYSCTL_ADD_PROC(ctx_list, child, OID_AUTO, "fc",



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