From owner-svn-src-all@FreeBSD.ORG Sun Jul 31 18:27:59 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01F8B106566C; Sun, 31 Jul 2011 18:27:59 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7F9C68FC16; Sun, 31 Jul 2011 18:27:58 +0000 (UTC) Received: by ywm39 with SMTP id 39so515268ywm.13 for ; Sun, 31 Jul 2011 11:27:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Lb6/lBb5myr4tAQ6DMz77j5TKPla8owCzsy2pRNiV+I=; b=St28PBz5Y3NXVx8TlJkkA2OynHdOMx5Bg1+F+kaxc3Ta0W5rFawAdT+UtuS6dBqEBz 6vOP1ROrB+IhqSQvdzedYOTdH24f8+3OZpF91BsPZ/RGG09E9di5Y0T2lrw00KXxGiEG 0Ei/QGQzrI3D0MZzk+pkAeaGW8mz54WBHanxw= MIME-Version: 1.0 Received: by 10.236.165.72 with SMTP id d48mr1414957yhl.26.1312136876538; Sun, 31 Jul 2011 11:27:56 -0700 (PDT) Sender: asmrookie@gmail.com Received: by 10.236.109.13 with HTTP; Sun, 31 Jul 2011 11:27:56 -0700 (PDT) In-Reply-To: <201107311826.p6VIQlFa058340@svn.freebsd.org> References: <201107311826.p6VIQlFa058340@svn.freebsd.org> Date: Sun, 31 Jul 2011 20:27:56 +0200 X-Google-Sender-Auth: XO1KrPg6Y0cwO-0nT2QSxKxciFE Message-ID: From: Attilio Rao To: Marcel Moolenaar Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r224551 - head/sys/powerpc/booke X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jul 2011 18:27:59 -0000 I actually submitted a better fix which does use .int. I wasn't sure BETA1 was out, so I'm going to send a formal request now. Attilio 2011/7/31 Marcel Moolenaar : > Author: marcel > Date: Sun Jul 31 18:26:47 2011 > New Revision: 224551 > URL: http://svn.freebsd.org/changeset/base/224551 > > Log: > =C2=A0Fix r224187: .word defines a 16-bit object and size_t is defined as > =C2=A0a 32-bit intergal. Use .long to define sintrcnt and sintrname. > > =C2=A0Approved by: =C2=A0re (blanket) > > Modified: > =C2=A0head/sys/powerpc/booke/locore.S > > Modified: head/sys/powerpc/booke/locore.S > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/sys/powerpc/booke/locore.S =C2=A0 =C2=A0 Sun Jul 31 16:16:25 201= 1 =C2=A0 =C2=A0 =C2=A0 =C2=A0(r224550) > +++ head/sys/powerpc/booke/locore.S =C2=A0 =C2=A0 Sun Jul 31 18:26:47 201= 1 =C2=A0 =C2=A0 =C2=A0 =C2=A0(r224551) > @@ -790,12 +790,12 @@ GLOBAL(kernload) > =C2=A0GLOBAL(intrnames) > =C2=A0 =C2=A0 =C2=A0 =C2=A0.space =C2=A0INTRCNT_COUNT * (MAXCOMLEN + 1) *= 2 > =C2=A0GLOBAL(sintrnames) > - =C2=A0 =C2=A0 =C2=A0 .word =C2=A0 INTRCNT_COUNT * (MAXCOMLEN + 1) * 2 > + =C2=A0 =C2=A0 =C2=A0 .long =C2=A0 INTRCNT_COUNT * (MAXCOMLEN + 1) * 2 > > =C2=A0 =C2=A0 =C2=A0 =C2=A0.align 4 > =C2=A0GLOBAL(intrcnt) > =C2=A0 =C2=A0 =C2=A0 =C2=A0.space =C2=A0INTRCNT_COUNT * 4 * 2 > =C2=A0GLOBAL(sintrcnt) > - =C2=A0 =C2=A0 =C2=A0 .word =C2=A0 INTRCNT_COUNT * 4 * 2 > + =C2=A0 =C2=A0 =C2=A0 .long =C2=A0 INTRCNT_COUNT * 4 * 2 > > =C2=A0#include > --=20 Peace can only be achieved by understanding - A. Einstein