From owner-cvs-src@FreeBSD.ORG Tue Mar 27 17:13:16 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 8704216A40E; Tue, 27 Mar 2007 17:13:16 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.freebsd.org (Postfix) with ESMTP id 3AB2F13C45E; Tue, 27 Mar 2007 17:13:16 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from phobos.samsco.home (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.8/8.13.8) with ESMTP id l2RH1dXE040528; Tue, 27 Mar 2007 11:01:44 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <46094DF2.4090501@samsco.org> Date: Tue, 27 Mar 2007 11:01:38 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.2pre) Gecko/20070111 SeaMonkey/1.1 MIME-Version: 1.0 To: John Baldwin References: <200703271651.l2RGpZfv012442@repoman.freebsd.org> In-Reply-To: <200703271651.l2RGpZfv012442@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (pooker.samsco.org [168.103.85.57]); Tue, 27 Mar 2007 10:01:44 -0700 (MST) X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern init_main.c kern_thread.c 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: Tue, 27 Mar 2007 17:13:16 -0000 John Baldwin wrote: > jhb 2007-03-27 16:51:34 UTC > > FreeBSD src repository > > Modified files: > sys/kern init_main.c kern_thread.c > Log: > Align 'struct thread' on 16 byte boundaries so that the lower 4 bits are > always 0. Previously we aligned threads on a minimum of 8-byte boundaries. > > Note: This changes the uma zone to no longer cache align threads. We > really want the uma zone to do align threads to MAX(16, cache line size) > but there currently isn't a good way to express that to uma. > I'm sure there is a good reason for this. Can you explain? Scott