svn commit: r352217 - stable/12/sys/kern

Mariusz Zaborski oshogbo at FreeBSD.org
Wed Sep 11 16:06:05 UTC 2019


Author: oshogbo
Date: Wed Sep 11 16:06:05 2019
New Revision: 352217
URL: https://svnweb.freebsd.org/changeset/base/352217

Log:
  Fix miss merge in r352179.

Modified:
  stable/12/sys/kern/kern_exit.c

Modified: stable/12/sys/kern/kern_exit.c
==============================================================================
--- stable/12/sys/kern/kern_exit.c	Wed Sep 11 16:00:03 2019	(r352216)
+++ stable/12/sys/kern/kern_exit.c	Wed Sep 11 16:06:05 2019	(r352217)
@@ -437,7 +437,6 @@ exit1(struct thread *td, int rval, int signo)
 	LIST_REMOVE(p, p_hash);
 	sx_xunlock(&allproc_lock);
 
-	sx_xlock(&proctree_lock);
 	PROC_LOCK(p);
 	p->p_flag &= ~(P_TRACED | P_PPWAIT | P_PPTRACE);
 	PROC_UNLOCK(p);


More information about the svn-src-stable-12 mailing list