From owner-freebsd-current@FreeBSD.ORG Tue Nov 11 03:16:19 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D96A616A4CE for ; Tue, 11 Nov 2003 03:16:19 -0800 (PST) Received: from firecrest.mail.pas.earthlink.net (firecrest.mail.pas.earthlink.net [207.217.121.247]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AEC443FE1 for ; Tue, 11 Nov 2003 03:16:18 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from user-2ivfiln.dialup.mindspring.com ([165.247.202.183] helo=mindspring.com) by firecrest.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 1AJWVK-00032q-00; Tue, 11 Nov 2003 03:16:15 -0800 Message-ID: <3FB0BC75.BC0E163E@mindspring.com> Date: Tue, 11 Nov 2003 02:39:49 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Alex Wilkinson References: <20031110164513.GA828@bewilderbeast.blackhelicopters.org> <20031111004523.GE14579@squirm.dsto.defence.gov.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a426c09ea1ced37ea982a5b29110b0a64693caf27dac41a8fd350badd9bab72f9c350badd9bab72f9c cc: current@freebsd.org Subject: Re: erroneous message from locked-up machine X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Nov 2003 11:16:20 -0000 Alex Wilkinson wrote: > Can someone please elaborate on the acronym KVA ? > > $ sysctl -d kern.ipc.maxpipekva > kern.ipc.maxpipekva: Pipe KVA limit > > This doesn't tell me enough. Kernel Virtual Address The fast pipe code in FreeBSD uses page lending between the processes participating in the pipe endpoints, so it uses a set of wired memory to do its job. By definition, this means that it takes a chunk of KVA space in order to get the wired memory. This tunable value is an administrative limit on the amount of KVA that can be used up by pipes. In general, you should never feel this, unless you are doing strange things with your pipes. Massively parallel compiles using pipes to communicate between the compiler stages, for example. -- Terry