From owner-svn-src-head@FreeBSD.ORG Mon Jul 25 18:58:09 2011 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 21C28106566B; Mon, 25 Jul 2011 18:58:09 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from mail.icecube.wisc.edu (trout.icecube.wisc.edu [128.104.255.119]) by mx1.freebsd.org (Postfix) with ESMTP id BCC018FC17; Mon, 25 Jul 2011 18:58:08 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.icecube.wisc.edu (Postfix) with ESMTP id F215E58135; Mon, 25 Jul 2011 13:58:07 -0500 (CDT) X-Virus-Scanned: amavisd-new at icecube.wisc.edu Received: from mail.icecube.wisc.edu ([127.0.0.1]) by localhost (trout.icecube.wisc.edu [127.0.0.1]) (amavisd-new, port 10030) with ESMTP id sZ59Z806qkv3; Mon, 25 Jul 2011 13:58:07 -0500 (CDT) Received: from wanderer.tachypleus.net (i3-dhcp-172-16-223-128.icecube.wisc.edu [172.16.223.128]) by mail.icecube.wisc.edu (Postfix) with ESMTP id D26285811D; Mon, 25 Jul 2011 13:58:07 -0500 (CDT) Message-ID: <4E2DBCBF.2030402@freebsd.org> Date: Mon, 25 Jul 2011 13:58:07 -0500 From: Nathan Whitehorn User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.18) Gecko/20110624 Thunderbird/3.1.11 MIME-Version: 1.0 To: Andreas Tobler References: <201107191241.p6JCfvqw072816@svn.freebsd.org> <4E2C9012.602@freebsd.org> <4E2DB8AC.3000703@FreeBSD.org> In-Reply-To: <4E2DB8AC.3000703@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Attilio Rao , svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, FreeBSD Release Engineering Team Subject: Re: svn commit: r224216 - in head/sys: ia64/ia64 mips/mips powerpc/aim sparc64/sparc64 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: Mon, 25 Jul 2011 18:58:09 -0000 On 07/25/11 13:40, Andreas Tobler wrote: > On 24.07.11 23:35, Nathan Whitehorn wrote: >> On 07/19/11 07:41, Attilio Rao wrote: >>> Author: attilio >>> Date: Tue Jul 19 12:41:57 2011 >>> New Revision: 224216 >>> URL: http://svn.freebsd.org/changeset/base/224216 >>> >>> Log: >>> On 64 bit architectures size_t is 8 bytes, thus it should use an 8 bytes >>> storage. >>> Fix the sintrcnt/sintrnames specification. >>> >>> No MFC is previewed for this patch. >>> >> >> These also need to be .long on 32-bit PowerPC, otherwise this change >> triggers kernel panics and faults in sysctl. Please change it as quickly >> as possible. > > Like the below? > > I'll test and I could commit if ok. (Build and approval) > > Gruss, > Andreas > > Index: locore32.S > =================================================================== > --- locore32.S (revision 224326) > +++ locore32.S (working copy) > @@ -91,13 +91,13 @@ > GLOBAL(intrnames) > .space INTRCNT_COUNT * (MAXCOMLEN + 1) * 2 > GLOBAL(sintrnames) > - .word INTRCNT_COUNT * (MAXCOMLEN + 1) * 2 > + .long INTRCNT_COUNT * (MAXCOMLEN + 1) * 2 > > .align 4 > GLOBAL(intrcnt) > .space INTRCNT_COUNT * 4 * 2 > GLOBAL(sintrcnt) > - .word INTRCNT_COUNT * 4 * 2 > + .long INTRCNT_COUNT * 4 * 2 > > .text > .globl btext Exactly like that. -Nathan