From owner-freebsd-current Thu Sep 7 5:58:56 2000 Delivered-To: freebsd-current@freebsd.org Received: from wint.itfs.nsk.su (wint.itfs.nsk.su [212.20.32.43]) by hub.freebsd.org (Postfix) with ESMTP id 6A20037B422 for ; Thu, 7 Sep 2000 05:58:53 -0700 (PDT) Received: (from nnd@localhost) by wint.itfs.nsk.su (8.11.0/8.9.3) id e87Cwhr10918; Thu, 7 Sep 2000 19:58:43 +0700 (NOVST) (envelope-from nnd) Date: Thu, 7 Sep 2000 19:58:43 +0700 (NOVST) Message-Id: <200009071258.e87Cwhr10918@wint.itfs.nsk.su> From: Nickolay Dudorov To: current@FreeBSD.ORG Subject: Re: cvs commit: src/bin/ps print.c src/share/man/man9 mutex.9 Makefile src/usr.bin/top machine.c src/sys/alpha/alpha mp_machdep.c synch_machdep.c clock.c genassym.c interrupt.c ipl_funcs.c locore.s machdep.c mem.c pmap.c prom.c support.s swtch.s trap.c ... In-Reply-To: <200009070133.SAA10582@freefall.freebsd.org> X-Newsgroups: itfs.freebsd.cvs.all User-Agent: tin/1.5.6-20000803 ("Dust") (UNIX) (FreeBSD/5.0-CURRENT (i386)) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <200009070133.SAA10582@freefall.freebsd.org> you wrote: > jasone 2000/09/06 18:33:03 PDT > > Modified files: ..... > 1.7 +39 -5 src/sys/i386/include/globals.h One of the changes is at line 107 : #define currentldt GLOBAL_LVALUE(currentldt, int) was changed to #define currentldt GLOBAL_RVALUE(currentldt, int) whereas in 'sys/i386/i386/machdep.c' at line 1914 we have currentldt = _default_ldt; and it leads to error while making kernel. All this lines are guarded by USER_LDT option, so you can make your kernel but my is not buildable ;-( After reverting this L->RVALUE change I at least can build kernel. Let's see how (if ever) it will work. N.Dudorov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message