From owner-svn-src-head@FreeBSD.ORG Thu Jul 29 16:13:26 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC95E1065674; Thu, 29 Jul 2010 16:13:26 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CC4F18FC1E; Thu, 29 Jul 2010 16:13:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o6TGDQ9H089498; Thu, 29 Jul 2010 16:13:26 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o6TGDQii089496; Thu, 29 Jul 2010 16:13:26 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201007291613.o6TGDQii089496@svn.freebsd.org> From: Rui Paulo Date: Thu, 29 Jul 2010 16:13:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r210611 - head/sys/kern X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 16:13:27 -0000 Author: rpaulo Date: Thu Jul 29 16:13:26 2010 New Revision: 210611 URL: http://svn.freebsd.org/changeset/base/210611 Log: Bump the witness pendlist to 768 to accomodate the increased number of spinlocks. Modified: head/sys/kern/subr_witness.c Modified: head/sys/kern/subr_witness.c ============================================================================== --- head/sys/kern/subr_witness.c Thu Jul 29 16:06:40 2010 (r210610) +++ head/sys/kern/subr_witness.c Thu Jul 29 16:13:26 2010 (r210611) @@ -135,7 +135,7 @@ __FBSDID("$FreeBSD$"); #define WITNESS_COUNT 1024 #define WITNESS_CHILDCOUNT (WITNESS_COUNT * 4) #define WITNESS_HASH_SIZE 251 /* Prime, gives load factor < 2 */ -#define WITNESS_PENDLIST 512 +#define WITNESS_PENDLIST 768 /* Allocate 256 KB of stack data space */ #define WITNESS_LO_DATA_COUNT 2048