git: f42bb99ad5f0 - main - udbp: Remove stale splnet comment

From: Warner Losh <imp_at_FreeBSD.org>
Date: Fri, 27 Oct 2023 20:19:48 UTC
The branch main has been updated by imp:

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

commit f42bb99ad5f0b04b96c929276b5fbbdf13925285
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-10-27 20:12:04 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-10-27 20:12:04 +0000

    udbp: Remove stale splnet comment
    
    netgraph no longer needs splnet. Document that we're forcing queueing.
    
    Sponsored by:           Netflix
---
 sys/dev/usb/misc/udbp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/usb/misc/udbp.c b/sys/dev/usb/misc/udbp.c
index 68caf368b683..61f77837ffbd 100644
--- a/sys/dev/usb/misc/udbp.c
+++ b/sys/dev/usb/misc/udbp.c
@@ -787,7 +787,7 @@ ng_udbp_connect(hook_p hook)
 {
 	struct udbp_softc *sc = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
 
-	/* probably not at splnet, force outward queueing */
+	/* force outward queueing */
 	NG_HOOK_FORCE_QUEUE(NG_HOOK_PEER(hook));
 
 	mtx_lock(&sc->sc_mtx);