Module Name:    src
Committed By:   thorpej
Date:           Sun Sep 26 17:34:19 UTC 2021

Modified Files:
        src/sys/kern: kern_sig.c

Log Message:
sig_filtops is MPSAFE.


To generate a diff of this commit:
cvs rdiff -u -r1.398 -r1.399 src/sys/kern/kern_sig.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/kern/kern_sig.c
diff -u src/sys/kern/kern_sig.c:1.398 src/sys/kern/kern_sig.c:1.399
--- src/sys/kern/kern_sig.c:1.398	Sun Sep 26 01:16:10 2021
+++ src/sys/kern/kern_sig.c	Sun Sep 26 17:34:19 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_sig.c,v 1.398 2021/09/26 01:16:10 thorpej Exp $	*/
+/*	$NetBSD: kern_sig.c,v 1.399 2021/09/26 17:34:19 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 2006, 2007, 2008, 2019 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.398 2021/09/26 01:16:10 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.399 2021/09/26 17:34:19 thorpej Exp $");
 
 #include "opt_execfmt.h"
 #include "opt_ptrace.h"
@@ -2693,7 +2693,7 @@ filt_signal(struct knote *kn, long hint)
 }
 
 const struct filterops sig_filtops = {
-	.f_flags = 0,
+	.f_flags = FILTEROP_MPSAFE,
 	.f_attach = filt_sigattach,
 	.f_detach = filt_sigdetach,
 	.f_event = filt_signal,

Reply via email to