From owner-svn-src-head@FreeBSD.ORG Wed Jun 23 23:32:30 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 AF0B5106566C; Wed, 23 Jun 2010 23:32:30 +0000 (UTC) (envelope-from xcllnt@mac.com) Received: from asmtpout025.mac.com (asmtpout025.mac.com [17.148.16.100]) by mx1.freebsd.org (Postfix) with ESMTP id 8F6B88FC13; Wed, 23 Jun 2010 23:32:30 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from macbook-pro.jnpr.net (natint3.juniper.net [66.129.224.36]) by asmtp025.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <0L4H00B8HQQ5MG60@asmtp025.mac.com>; Wed, 23 Jun 2010 16:32:30 -0700 (PDT) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1004200000 definitions=main-1006230154 X-Proofpoint-Virus-Version: vendor=fsecure engine=1.12.8161:2.4.5,1.2.40,4.0.166 definitions=2010-06-23_03:2010-02-06, 2010-06-23, 2010-06-23 signatures=0 From: Marcel Moolenaar In-reply-to: <201006232326.o5NNQEtK011793@svn.freebsd.org> Date: Wed, 23 Jun 2010 16:32:28 -0700 Message-id: <3659E546-80A0-4E82-8112-40B093728D81@mac.com> References: <201006232326.o5NNQEtK011793@svn.freebsd.org> To: Nathan Whitehorn X-Mailer: Apple Mail (2.1081) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r209490 - 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: Wed, 23 Jun 2010 23:32:30 -0000 On Jun 23, 2010, at 4:26 PM, Nathan Whitehorn wrote: > @@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$"); > */ > > #ifndef HZ > -# if defined(__amd64__) || defined(__i386__) || defined(__ia64__) || defined(__sparc64__) > +# if defined(__amd64__) || defined(__i386__) || defined(__ia64__) || defined(__sparc64__) || defined(__powerpc__) > # define HZ 1000 > # else > # define HZ 100 Would you mind inverting the #if statement? The common case is obviously 1KHz, so listing the exceptions (I belief that's only arm and mips) is more effective... -- Marcel Moolenaar xcllnt@mac.com