Module Name:    src
Committed By:   thorpej
Date:           Sat Aug 27 19:19:10 UTC 2022

Modified Files:
        src/sys/net: if_sl.c

Log Message:
Ensure that all queues passed to ifq_enqueue2() have a valid ifq_lock.


To generate a diff of this commit:
cvs rdiff -u -r1.133 -r1.134 src/sys/net/if_sl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/net/if_sl.c
diff -u src/sys/net/if_sl.c:1.133 src/sys/net/if_sl.c:1.134
--- src/sys/net/if_sl.c:1.133	Sat Aug 27 19:17:08 2022
+++ src/sys/net/if_sl.c	Sat Aug 27 19:19:10 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_sl.c,v 1.133 2022/08/27 19:17:08 thorpej Exp $	*/
+/*	$NetBSD: if_sl.c,v 1.134 2022/08/27 19:19:10 thorpej Exp $	*/
 
 /*
  * Copyright (c) 1987, 1989, 1992, 1993
@@ -60,7 +60,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_sl.c,v 1.133 2022/08/27 19:17:08 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_sl.c,v 1.134 2022/08/27 19:19:10 thorpej Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -270,6 +270,7 @@ sl_clone_create(struct if_clone *ifc, in
 	sc->sc_if.if_output = sloutput;
 	sc->sc_if.if_dlt = DLT_SLIP;
 	IFQ_SET_MAXLEN(&sc->sc_fastq, 32);
+	IFQ_LOCK_INIT(&sc->sc_fastq);
 	IFQ_SET_READY(&sc->sc_if.if_snd);
 	if_attach(&sc->sc_if);
 	if_alloc_sadl(&sc->sc_if);
@@ -291,6 +292,8 @@ sl_clone_destroy(struct ifnet *ifp)
 	bpf_detach(ifp);
 	if_detach(ifp);
 
+	IFQ_LOCK_DESTROY(&sc->sc_fastq);
+
 	free(sc, M_DEVBUF);
 	return 0;
 }

Reply via email to