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

Mariusz Zaborski oshogbo at FreeBSD.org
Tue Sep 10 20:21:48 UTC 2019


Author: oshogbo
Date: Tue Sep 10 20:21:47 2019
New Revision: 352185
URL: https://svnweb.freebsd.org/changeset/base/352185

Log:
  MFCr350617:
    procdesc: fix the function name
  
    I changed name of the function r350429 and forgot to update
    the r350612 patch.
  
    Reported by:  jenkins

Modified:
  stable/12/sys/kern/sys_procdesc.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/kern/sys_procdesc.c
==============================================================================
--- stable/12/sys/kern/sys_procdesc.c	Tue Sep 10 20:20:45 2019	(r352184)
+++ stable/12/sys/kern/sys_procdesc.c	Tue Sep 10 20:21:47 2019	(r352185)
@@ -419,7 +419,7 @@ procdesc_close(struct file *fp, struct thread *td)
 			if ((p->p_flag & P_TRACED) == 0) {
 				proc_reparent(p, p->p_reaper, true);
 			} else {
-				clear_orphan(p);
+				proc_clear_orphan(p);
 				p->p_oppid = p->p_reaper->p_pid;
 				proc_add_orphan(p, p->p_reaper);
 			}


More information about the svn-src-all mailing list