svn commit: r220918 - in stable/7/sys: kern sys

Sergey Kandaurov pluknet at FreeBSD.org
Thu Apr 21 09:03:49 UTC 2011


Author: pluknet
Date: Thu Apr 21 09:03:48 2011
New Revision: 220918
URL: http://svn.freebsd.org/changeset/base/220918

Log:
  MFC r220621:
  
   Remove stale M_ZOMBIE malloc type.

Modified:
  stable/7/sys/kern/kern_exit.c
  stable/7/sys/sys/proc.h
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/kern/kern_exit.c
==============================================================================
--- stable/7/sys/kern/kern_exit.c	Thu Apr 21 09:02:19 2011	(r220917)
+++ stable/7/sys/kern/kern_exit.c	Thu Apr 21 09:03:48 2011	(r220918)
@@ -94,9 +94,6 @@ SDT_PROVIDER_DECLARE(proc);
 SDT_PROBE_DEFINE(proc, kernel, , exit);
 SDT_PROBE_ARGTYPE(proc, kernel, , exit, 0, "int");
 
-/* Required to be non-static for SysVR4 emulator */
-MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status");
-
 /* Hook for NFS teardown procedure. */
 void (*nlminfo_release_p)(struct proc *p);
 

Modified: stable/7/sys/sys/proc.h
==============================================================================
--- stable/7/sys/sys/proc.h	Thu Apr 21 09:02:19 2011	(r220917)
+++ stable/7/sys/sys/proc.h	Thu Apr 21 09:03:48 2011	(r220918)
@@ -680,7 +680,6 @@ MALLOC_DECLARE(M_PARGS);
 MALLOC_DECLARE(M_PGRP);
 MALLOC_DECLARE(M_SESSION);
 MALLOC_DECLARE(M_SUBPROC);
-MALLOC_DECLARE(M_ZOMBIE);
 #endif
 
 #define	FOREACH_PROC_IN_SYSTEM(p)					\


More information about the svn-src-all mailing list