Re: PATCH: devfs mkIII test review please.

2000-08-19 Thread Poul-Henning Kamp
Please configure DDB and INVARIANTS in your kernel when you use this patch, and send me output from the "trace" command in DDB when it panics. Poul-Henning In message [EMAIL PROTECTED], Robert Drehmel writes: This is a multi-part message in MIME format. --CD4992067B057DE3DC660AE0

Re: PATCH: devfs mkIII test review please.

2000-08-19 Thread Poul-Henning Kamp
Ok, I belive this one is fixed now, please try again. Poul-Henning In message [EMAIL PROTECTED], Robert Drehmel writes: In 84513.966631292@critter, Poul-Henning Kamp [EMAIL PROTECTED] wrote: Please look at, test and review: http://phk.freebsd.dk/patch/devfsIII.patch [...] When

Re: PATCH: devfs mkIII test review please.

2000-08-19 Thread Robert Drehmel
In 85506.966672378@critter, Poul-Henning Kamp [EMAIL PROTECTED] wrote: Please configure DDB and INVARIANTS in your kernel when you use this patch, and send me output from the "trace" command in DDB when it panics. """ Stopped at i586_bz2+0x2: fstl0(%edx)

Re: PATCH: devfs mkIII test review please.

2000-08-19 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Robert Drehmel writes: I also noticed that top and ps are unusable since I first booted the kernel that was built from the sys tree patched with ``devfsIII.patch''. """ $ top kvm_open: proc size mismatch (32736 total, 1048 chunks) top: out of memory $ ps ps: proc

Anyone have newmidi working?

2000-08-19 Thread Brian Fundakowski Feldman
Newmidi doesn't seem to work. The oplsbc device handling had to be hacked a bit to support non-PnP SBs, but that's inconsequential. It probes and boots fine. It seems that newmidi is completely disconnected from actually being able to work. I haven't gotten any response from the author :-(

Re: PATCH: devfs mkIII test review please.

2000-08-19 Thread Robert Drehmel
In 86054.966696645@critter, Poul-Henning Kamp wrote: Ok, I belive this one is fixed now, please try again. Yes, it boots. But when using a kernel with ``options DEVFS'', there is no /dev/audio or /dev/mouse, for example; devfs has mounted itself to /dev. -- Robert S. F. Drehmel [EMAIL

Re: PATCH: devfs mkIII test review please.

2000-08-19 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Robert Drehmel writes: In 86054.966696645@critter, Poul-Henning Kamp wrote: Ok, I belive this one is fixed now, please try again. Yes, it boots. But when using a kernel with ``options DEVFS'', there is no /dev/audio or /dev/mouse, for example; devfs has mounted

Re: PATCH: devfs mkIII test review please.

2000-08-19 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Robert Drehmel writes: In 86054.966696645@critter, Poul-Henning Kamp wrote: Ok, I belive this one is fixed now, please try again. Yes, it boots. But when using a kernel with ``options DEVFS'', there is no /dev/audio or /dev/mouse, for example; devfs has mounted

Re: Build fails OpenSSH

2000-08-19 Thread Gordon Zeigler
Disregard... I was installing ssh, instead of openssh. Latter works. *** REPLY SEPARATOR *** On 8/19/00 at 2:31 PM Gordon Zeigler wrote: During make of OpenSSH, I get the following. I'm a neophyte. What does this indicate? === Building for m4-1.4 for subdir in doc lib src

vika@mtu-net.ru

2000-08-19 Thread vika
Âû õîòèòå çàáûòü î ñóåòå, îêóíóòüñÿ â ìèð ðîìàíòè÷åñêèõ ãðåç? Îòêðîéòå ïóòü ê íåáåñíîìó áëàæåíñòâó, îñòàâüòå áåñêîíå÷íûå ïðîáëåìû - ïðåëåñòíàÿ íèìôà ïðåäëàãàåò Âàì îòäîõíóòü, ðàññëàáèòüñÿ è óòîíóòü â îêåàíå áëàæåíñòâà è ñëàäîñòðàñòèÿ. Ìîå ñòðîéíîå òåëî è íåæíûå ðóêè ïîâåðãíóò Âàñ â ïó÷èíó

Instant panic in _MEXT_ALLOC_CNT

2000-08-19 Thread John Polstra
With sources from this morning I am getting an instant kernel-mode page fault in the new mbuf cluster reference counting code. It is failing in this statement of _MEXT_ALLOC_CNT (sys/mbuf.h), as far as I can tell: #define _MEXT_ALLOC_CNT(m_cnt) MBUFLOCK(\

Re: (URGENT) Instant panic in _MEXT_ALLOC_CNT

2000-08-19 Thread Bosko Milekic
Hrmmm, there may be a logic problem here. Try this (apply it manually, as I am not able to produce a diff at this time): change: if ((__mcnt == NULL) (m_alloc_ref(1) == 0)) panic("mbuf subsystem: out of ref counts!"); to: if (__mcnt == NULL) { if

Re: (URGENT) Instant panic in _MEXT_ALLOC_CNT

2000-08-19 Thread John Polstra
In article 000501c00a34$dfd43f20$71cbc918@jehovah, Bosko Milekic [EMAIL PROTECTED] wrote: Hrmmm, there may be a logic problem here. Try this (apply it manually, as I am not able to produce a diff at this time): change: if ((__mcnt == NULL) (m_alloc_ref(1) == 0))