svn commit: r220916 - in stable/8/sys: kern sys

Sergey Kandaurov pluknet at FreeBSD.org
Thu Apr 21 09:01:44 UTC 2011


Author: pluknet
Date: Thu Apr 21 09:01:43 2011
New Revision: 220916
URL: http://svn.freebsd.org/changeset/base/220916

Log:
  MFC r220621:
  
   Remove stale M_ZOMBIE malloc type.

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

Modified: stable/8/sys/kern/kern_exit.c
==============================================================================
--- stable/8/sys/kern/kern_exit.c	Thu Apr 21 08:20:56 2011	(r220915)
+++ stable/8/sys/kern/kern_exit.c	Thu Apr 21 09:01:43 2011	(r220916)
@@ -93,9 +93,6 @@ SDT_PROVIDER_DECLARE(proc);
 SDT_PROBE_DEFINE(proc, kernel, , exit, 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/8/sys/sys/proc.h
==============================================================================
--- stable/8/sys/sys/proc.h	Thu Apr 21 08:20:56 2011	(r220915)
+++ stable/8/sys/sys/proc.h	Thu Apr 21 09:01:43 2011	(r220916)
@@ -660,7 +660,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-stable-8 mailing list