From owner-cvs-src@FreeBSD.ORG Mon Jan 15 15:06:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9304016A494; Mon, 15 Jan 2007 15:06:28 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5CC5A13C441; Mon, 15 Jan 2007 15:06:28 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l0FF6St5022660; Mon, 15 Jan 2007 15:06:28 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l0FF6S6D022659; Mon, 15 Jan 2007 15:06:28 GMT (envelope-from rrs) Message-Id: <200701151506.l0FF6S6D022659@repoman.freebsd.org> From: Randall Stewart Date: Mon, 15 Jan 2007 15:06:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_subr.c src/sys/sys systm.h src/share/man/man9 Makefile hashinit.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 15 Jan 2007 15:06:28 -0000 rrs 2007-01-15 15:06:28 UTC FreeBSD src repository Modified files: sys/kern kern_subr.c sys/sys systm.h share/man/man9 Makefile hashinit.9 Log: Reviewed by: rwatson Approved by: gnn Add a new function hashinit_flags() which allows NOT-waiting for memory (or waiting). The old hashinit() function now calls hashinit_flags(..., HASH_WAITOK); Revision Changes Path 1.288 +2 -1 src/share/man/man9/Makefile 1.3 +26 -2 src/share/man/man9/hashinit.9 1.100 +36 -6 src/sys/kern/kern_subr.c 1.248 +6 -1 src/sys/sys/systm.h