From owner-freebsd-hackers Mon May 21 10:59: 1 2001 Delivered-To: freebsd-hackers@freebsd.org Received: from meow.osd.bsdi.com (meow.osd.bsdi.com [204.216.28.88]) by hub.freebsd.org (Postfix) with ESMTP id 330BE37B43F; Mon, 21 May 2001 10:58:53 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from laptop.baldwin.cx (john@jhb-laptop.osd.bsdi.com [204.216.28.241]) by meow.osd.bsdi.com (8.11.2/8.11.2) with ESMTP id f4LHwmG45094; Mon, 21 May 2001 10:58:48 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200105210205.f4L25x102099@green.bikeshed.org> Date: Mon, 21 May 2001 10:58:54 -0700 (PDT) From: John Baldwin To: "Brian F. Feldman" Subject: RE: vmspace leak (+ tentative fix) Cc: hackers@FreeBSD.org Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 21-May-01 Brian F. Feldman wrote: > There's a certain issue that when several processes sharing a vmspace are > exiting at the same time, there is a race condition such that the shared > memory is going to be lost because the check for vm->vm_refcnt being the > check for the last decrement happening before the last decrement is > actually performed, allowing for the possibility of Giant being dropped > (duh, during flushing of dirty pages), and all the trouble that entails... Erm, all that is needed here is to hold the vm_mtx lock around the decrement. Due to the nature of reference counts, there is no race condition so long as everyone properly decrements the reference count by means of lock. Alfred's VM patch already does this. Also, Giant originally provided the lock around the decrement. -- John Baldwin -- http://www.FreeBSD.org/~jhb/ PGP Key: http://www.baldwin.cx/~john/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message