From owner-cvs-all@FreeBSD.ORG Sun Aug 10 22:51:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09E9D37B401; Sun, 10 Aug 2003 22:51:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2D3043F75; Sun, 10 Aug 2003 22:51:52 -0700 (PDT) (envelope-from silby@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 h7B5pp0U001254; Sun, 10 Aug 2003 22:51:51 -0700 (PDT) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7B5ppHr001253; Sun, 10 Aug 2003 22:51:51 -0700 (PDT) Message-Id: <200308110551.h7B5ppHr001253@repoman.freebsd.org> From: Mike Silbersack Date: Sun, 10 Aug 2003 22:51:51 -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/kern subr_param.c sys_pipe.c src/sys/sys pipe.h src/sys/vm vm_init.c vm_kern.c vm_kern.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 05:51:53 -0000 silby 2003/08/10 22:51:51 PDT FreeBSD src repository Modified files: sys/kern subr_param.c sys_pipe.c sys/sys pipe.h sys/vm vm_init.c vm_kern.c vm_kern.h Log: More pipe changes: From alc: Move pageable pipe memory to a seperate kernel submap to avoid awkward vm map interlocking issues. (Bad explanation provided by me.) From me: Rework pipespace accounting code to handle this new layout, and adjust our default values to account for the fact that we now have a solid limit on allocations. Also, remove the "maxpipes" limit, as it no longer has a purpose. (The limit on kva usage solves the problem of having two many pipes.) Revision Changes Path 1.60 +8 -10 src/sys/kern/subr_param.c 1.145 +26 -38 src/sys/kern/sys_pipe.c 1.23 +0 -1 src/sys/sys/pipe.h 1.38 +3 -0 src/sys/vm/vm_init.c 1.103 +1 -0 src/sys/vm/vm_kern.c 1.26 +1 -0 src/sys/vm/vm_kern.h