Initialize TCP mutex forgotten in previous commit.
authorbluhm <bluhm@openbsd.org>
Sat, 3 Sep 2022 22:11:09 +0000 (22:11 +0000)
committerbluhm <bluhm@openbsd.org>
Sat, 3 Sep 2022 22:11:09 +0000 (22:11 +0000)
found by Hrvoje Popovski with witness; OK mvs@

sys/netinet/tcp_subr.c

index e1da481..e79aa0f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tcp_subr.c,v 1.187 2022/09/03 19:22:19 bluhm Exp $    */
+/*     $OpenBSD: tcp_subr.c,v 1.188 2022/09/03 22:11:09 bluhm Exp $    */
 /*     $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $   */
 
 /*
  *     T       tcp_timer_mtx           global tcp timer data structures
  */
 
-struct mutex tcp_timer_mtx;
+struct mutex tcp_timer_mtx = MUTEX_INITIALIZER(IPL_SOFTNET);
 
 /* patchable/settable parameters for tcp */
 int    tcp_mssdflt = TCP_MSS;