From owner-freebsd-current Mon Feb 17 1:10:27 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7869737B401 for ; Mon, 17 Feb 2003 01:10:25 -0800 (PST) Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3B7D43F3F for ; Mon, 17 Feb 2003 01:10:24 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by rwcrmhc52.attbi.com (rwcrmhc52) with ESMTP id <2003021709102405200fv5cee>; Mon, 17 Feb 2003 09:10:24 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id BAA10497 for ; Mon, 17 Feb 2003 01:10:22 -0800 (PST) Date: Mon, 17 Feb 2003 01:10:21 -0800 (PST) From: Julian Elischer To: FreeBSD current users Subject: Re: Sparc assembler quesion... In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG oh yeah I also tried line 2319 as lduw as well (my guess) On Mon, 17 Feb 2003, Julian Elischer wrote: > > anyone have an answer? > Index: sparc64/sparc64/exception.S > =================================================================== > RCS file: /home/ncvs/src/sys/sparc64/sparc64/exception.S,v > retrieving revision 1.59 > diff -u -r1.59 exception.S > --- sparc64/sparc64/exception.S 26 Jan 2003 03:38:30 -0000 1.59 > +++ sparc64/sparc64/exception.S 17 Feb 2003 08:52:21 -0000 > @@ -2316,9 +2316,8 @@ > */ > wrpr %g0, PIL_TICK, %pil > ldx [PCPU(CURTHREAD)], %l0 > - ldx [%l0 + TD_KSE], %l1 > - lduw [%l1 + KE_FLAGS], %l2 > - and %l2, KEF_ASTPENDING | KEF_NEEDRESCHED, %l2 > + ldx [%l0 + TD_FLAGS], %l2 > + and %l2, TDF_ASTPENDING | TDF_NEEDRESCHED, %l2 > brz,a,pt %l2, 1f > nop > > cc -c -x assembler-with-cpp -DLOCORE -O -pipe -Wall -Wredundant-decls > -Wnested- > externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith > -Winline -Wcas > t-qual -ansi -g -nostdinc -I- -I. -I../../.. -I../../../dev > -I../../../contrib > /dev/acpica -I../../../contrib/ipfilter -D_KERNEL -include opt_global.h > -mcmodel > =medlow -msoft-float -fno-common -ffreestanding -Werror > ../../../sparc64/sparc6 > 4/exception.S > ../../../sparc64/sparc64/exception.S: Assembler messages: > ../../../sparc64/sparc64/exception.S:2320: Error: relocation overflow > *** Error code 1 > > 2320 is the 'and' > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message