Re: World is broken...

2001-04-29 Thread Michael Harnois
On Sun, 29 Apr 2001 12:00:56 -0700 (PDT), John Polstra <[EMAIL PROTECTED]> said: > I imagine adding something like this to would fix it: > #define isalnum(c) (isalpha(c) || isdigit(c)) This suggestion was posted this morning in cvs-all; The file 'sys/boot/ficl/words.c' contai

Re: World is broken...

2001-04-29 Thread Bruce Evans
On Sun, 29 Apr 2001, John Polstra wrote: > It's because words.c uses instead of , and > is missing the #define for isalnum(). I imagine adding > something like this to would fix it: > > #define isalnum(c) (isalpha(c) || isdigit(c)) That would be broken, since it would make isalnu

Re: camcontrol stop / restart broken

2001-04-29 Thread Doug Russell
On Sun, 29 Apr 2001, Kenneth D. Merry wrote: > (pass1:ahc0:0:2:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 > (pass1:ahc0:0:2:0): CAM Status: SCSI Status Error > (pass1:ahc0:0:2:0): SCSI Status: Check Condition > (pass1:ahc0:0:2:0): NOT READY asc:4,2 > (pass1:ahc0:0:2:0): Logical unit not ready, initia

Re: camcontrol stop / restart broken

2001-04-29 Thread Kenneth D. Merry
On Sun, Apr 29, 2001 at 14:47:47 +0300, Tomi Vainio - Sun Finland - wrote: > Kenneth D. Merry writes: > > > > Can you do the following: > > > > camcontrol stop da1 > > camcontrol tur da1 -v > > [ then you can start it back up with camcontrol start ] > > > > What I want to see here is th

Re: dirpref: a new form of rm -rf * (was: World is broken...)

2001-04-29 Thread David Wolfskill
>Date: Sun, 29 Apr 2001 13:23:52 -0700 (PDT) >From: John Polstra <[EMAIL PROTECTED]> >In article <[EMAIL PROTECTED]>, >Mike Smith <[EMAIL PROTECTED]> wrote: >> > #defineisalnum(c) (isalpha(c) || isdigit(c)) Actually, following the lead of the definition of isalpha(), the version I used

Re: {id,rt}prio broken (at syscall level?)

2001-04-29 Thread Jake Burkholder
> Hi, > > -current from yesterday: > ---snip--- > (45) root@ttyp0 # idprio 31 /bin/sleep 10 > idprio: idprio: Invalid argument > > (46) root@ttyp0 # rtprio 31 /bin/sleep 10 > rtprio: rtprio: Invalid argument > ---snip--- > > isdnd is also affected (if you use its rtprio keyword in isdnd.rc).

recent -CURRENT and boot loader / kernel problems?

2001-04-29 Thread Robert Watson
I have a Dell Latitude CPi notebook, and recently ran into some nastiness involving the boot process. The machine is using an April 24th world, and up until now had been using an April 24th kernel. Leaving aside problems with pcm hanging the kernel at boot, things seemed to work largely fine.

dirpref: a new form of rm -rf * (was: World is broken...)

2001-04-29 Thread John Polstra
In article <[EMAIL PROTECTED]>, Mike Smith <[EMAIL PROTECTED]> wrote: > > #define isalnum(c) (isalpha(c) || isdigit(c)) > > Just FWIW, you can't use in the loader; it's too incestuously > entangled with the rest of libc. I suspect that Daniel forgot to update > libstand. > > I've s

panic: vm_page_alloc: free/cache page 0xc092fab8 was dirty

2001-04-29 Thread Robert Watson
Got this on an April 14 -CURRENT, while rebuilding a kernel: panic: vm_page_alloc: free/cache page 0xc092fab8 was dirty Debugger("panic") Stopped at Debugger+0x44 pushl %ebx db> trace Debugger(c0412b7b) at Debugger+0x44 panic(c0432160,c092fab8,0,c8a98ca0,c7b1bce0) at panic+0x70 vm_page_a

{id,rt}prio broken (at syscall level?)

2001-04-29 Thread Alexander Leidinger
Hi, -current from yesterday: ---snip--- (45) root@ttyp0 # idprio 31 /bin/sleep 10 idprio: idprio: Invalid argument (46) root@ttyp0 # rtprio 31 /bin/sleep 10 rtprio: rtprio: Invalid argument ---snip--- isdnd is also affected (if you use its rtprio keyword in isdnd.rc). Bye, Alexander. --

Re: World is broken...

2001-04-29 Thread Mike Smith
> > The only reference to isalnum() I see is in boot/ficl/words.c:274, and > > appears to replace a couple of references, one to isdigit() and the > > other to isalpha(). > > > > Perhaps something was omitted in the upgrade to ficl 2.05? > > It's because words.c uses instead of , and > is miss

Re: World is broken...

2001-04-29 Thread John Polstra
In article <[EMAIL PROTECTED]>, David Wolfskill <[EMAIL PROTECTED]> wrote: > >From: Poul-Henning Kamp <[EMAIL PROTECTED]> > >Date: Sun, 29 Apr 2001 19:10:36 +0200 > > > /usr/obj/flat/src/sys/boot/i386/loader/../../ficl/libficl.a >/usr/obj/flat/src/sys/boot/i386/loader/../libi386/libi386.a >/us

Re: ipfw: several equal rules under same number bug

2001-04-29 Thread Nate Williams
> How it can be possible? ipfw -a l: > > 07001 401680 deny tcp from any to any 7006 > 070010 0 deny tcp from any to any 7006 > 070010 0 deny tcp from any to any 7006 > > I use equal "ipfw add" several times from the script, but the rule number >

Re: World is broken...

2001-04-29 Thread David Wolfskill
>From: Poul-Henning Kamp <[EMAIL PROTECTED]> >Date: Sun, 29 Apr 2001 19:10:36 +0200 > /usr/obj/flat/src/sys/boot/i386/loader/../../ficl/libficl.a >/usr/obj/flat/src/sys/boot/i386/loader/../libi386/libi386.a >/usr/obj/flat/src/sys/boot/ >i386/loader/../../../../lib/libstand/libstand.a >/usr/obj/

World is broken...

2001-04-29 Thread Poul-Henning Kamp
make buildworld: gzip -cn /flat/src/sys/boot/i386/loader/../../common/loader.8 > loader.8.gz sh /flat/src/sys/boot/i386/loader/../../common/newvers.sh /flat/src/sys/boot/i386/loader/version "bootstrap loader" i386 cc -c vers.c /flat/src/sys/boot/i386/loader/../../common/interp_forth.c: In funct

Re: camcontrol stop / restart broken

2001-04-29 Thread Tomi Vainio - Sun Finland -
Kenneth D. Merry writes: > > Can you do the following: > > camcontrol stop da1 > camcontrol tur da1 -v > [ then you can start it back up with camcontrol start ] > > What I want to see here is the sense information coming back from the drive > when it is spun down. > > The new error

Re: camcontrol stop / restart broken

2001-04-29 Thread J Wunsch
Tomi Vainio - Sun Finland - <[EMAIL PROTECTED]> wrote: > My source disk is quite noisy so normally I stop it after building the > world and restart it once a week. Couple weeks this restart hasn't > worked as before. Oh, now that you mention it, i've seen that before, too. I didn't pay too muc