Date: Thu, 21 Apr 2011 09:03:48 +0000 (UTC) From: Sergey Kandaurov <pluknet@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r220918 - in stable/7/sys: kern sys Message-ID: <201104210903.p3L93m92088502@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104210903.p3L93m92088502>