From owner-cvs-src@FreeBSD.ORG Sat Aug 2 15:41:25 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3CDA37B482; Sat, 2 Aug 2003 15:41:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A622643FEA; Sat, 2 Aug 2003 15:40:35 -0700 (PDT) (envelope-from bmilekic@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h72MeS0U040375; Sat, 2 Aug 2003 15:40:28 -0700 (PDT) (envelope-from bmilekic@repoman.freebsd.org) Received: (from bmilekic@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h72MeRC2040374; Sat, 2 Aug 2003 15:40:27 -0700 (PDT) Message-Id: <200308022240.h72MeRC2040374@repoman.freebsd.org> From: Bosko Milekic Date: Sat, 2 Aug 2003 15:40:27 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm uma_core.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2003 22:41:36 -0000 bmilekic 2003/08/02 15:40:27 PDT FreeBSD src repository Modified files: sys/vm uma_core.c Log: When INVARIANTS is on and we're in uma_zalloc_free(), we need to make sure that uma_dbg_free() is called if we're about to call uma_zfree_internal() but we're asking it to skip the dtor and uma_dbg_free() call itself. So, if we're about to call uma_zfree_internal() from uma_zfree_arg() and skip == 1, call uma_dbg_free() ourselves. Revision Changes Path 1.71 +15 -0 src/sys/vm/uma_core.c