Re: New Fatal trap in Current SMP (random.dev changes ??)

2000-09-11 Thread Mark Murray
And the panic goes away Manfred I've got it fixed. The code is using TAILQ_REMOVE and TAILQ_FIRST to pull entries out of a tailq while it is walking it via TAILQ_FOREACH. Changing it to use a while(!TAILQ_EMPTY) instead of using TAILQ_FOREACH fixes it. I'll be committing the fix in

Re: page fault in sched_ithd

2000-09-11 Thread Bruce Evans
On Mon, 11 Sep 2000, Greg Lehey wrote: On Monday, 11 September 2000 at 13:18:37 +1100, Bruce Evans wrote: The stray interrupt handler needs to have a thread, or stray interrupts need to be handled as traps. Stray interrupts are more like NMIs than normal interrupts, and NMIs are already

Re: Dirty buffers on reboot..

2000-09-11 Thread John Baldwin
Bruce Evans wrote: On Sun, 10 Sep 2000, John Baldwin wrote: [EMAIL PROTECTED] wrote: Ok, an update on the dirty buffers on reboot: If you use the reboot command, you will get dirty buffers. If you use 'shutdown -r now' instead, you won't get dirty buffers. Thus, as a

Re: New Fatal trap in Current SMP (random.dev changes ??)

2000-09-11 Thread Bruce Evans
On Sun, 10 Sep 2000, John Baldwin wrote: Boris Popov wrote: Yes, after trap is occured ddb works. But it is impossible to continue from ddb because after typing 'center' machine becomes frozen. The same thing occur after any other panic (this is with SMP kernel). It only does this

Re: page fault in sched_ithd

2000-09-11 Thread Greg Lehey
On Monday, 11 September 2000 at 17:44:43 +1100, Bruce Evans wrote: On Mon, 11 Sep 2000, Greg Lehey wrote: On Monday, 11 September 2000 at 13:18:37 +1100, Bruce Evans wrote: The stray interrupt handler needs to have a thread, or stray interrupts need to be handled as traps. Stray interrupts

Re: New Fatal trap in Current SMP (random.dev changes ??)

2000-09-11 Thread Bruce Evans
On Sun, 10 Sep 2000, John Baldwin wrote: I've got it fixed. The code is using TAILQ_REMOVE and TAILQ_FIRST to pull entries out of a tailq while it is walking it via TAILQ_FOREACH. Changing it to use a while(!TAILQ_EMPTY) instead of using TAILQ_FOREACH fixes it. I'll be committing the fix

Re: load average is 1 when no processes active; etc.

2000-09-11 Thread Hellmuth Michaelis
Just for the record, i here have a system cvsupped and built FreeBSD 5.0-CURRENT #0: Sat Sep 9 13:46:17 CEST 2000 which has a constant load average of 1.00 and higher in uptime, top, and systat. The load is already 1.00 or above when the first shell prompt after a boot appears. I've

Re: make world libcrypto Undefined symbol RSA_PKCS1

2000-09-11 Thread Kris Kennaway
On Sun, 10 Sep 2000, Mark Hittinger wrote: It may be because of something screwy that I did, I had been cvsup'ing from cvsup3. Saw the note about 3 not having a full crypto mirror so I tried a cvsup from 2 and make world completed, but when running ssh I get this:

Re: page fault in sched_ithd

2000-09-11 Thread Bruce Evans
On Mon, 11 Sep 2000, Greg Lehey wrote: On Monday, 11 September 2000 at 17:44:43 +1100, Bruce Evans wrote: On Mon, 11 Sep 2000, Greg Lehey wrote: Independently of that, we need to be able to survive a spurious interrupt on any IRQ. Not really independent. Spurious interrupts on "any"

Re: Dirty buffers on reboot..

2000-09-11 Thread Doug Rabson
On Sun, 10 Sep 2000, John Baldwin wrote: H. At least on the x86, curproc is now set to proc0 before we probe to see how much memory we have in init386(). In fact, we set curproc up right after setting up the GDT, and before both the ldt and idt, so at least on x86, we won't get a

Re: load average is 1 when no processes active; etc.

2000-09-11 Thread Bruce Evans
On Mon, 11 Sep 2000, Valentin Nechayev wrote: `top -I' output: ==={ last pid: 811; load averages: 1.01, 0.97, 0.67up 0+00:16:12 23:26:26 This is because the idle process is always running (see "ps lax" outout). Perhaps the bug is that top doesn't show the idle

PAM in ftpd.c

2000-09-11 Thread Jun Kuriyama
I don't know around PAM coding, but below topic is there in Japanese mailing list. o After setting /etc/skey.access, cannot login to ftpd via UNIX password. There is a patch to fix this problem in that mailing list. Could someone review and commit it? (Submitted by: [EMAIL PROTECTED])

Re: load average is 1 when no processes active; etc.

2000-09-11 Thread Maxim Sobolev
Bruce Evans wrote: On Mon, 11 Sep 2000, Valentin Nechayev wrote: `top -I' output: ==={ last pid: 811; load averages: 1.01, 0.97, 0.67up 0+00:16:12 23:26:26 This is because the idle process is always running (see "ps lax" outout). Perhaps the bug is that top

Re: fwd: [root: security check]

2000-09-11 Thread Sheldon Hearn
On Sat, 09 Sep 2000 12:25:28 EST, Steve Ames wrote: Any way this can show what actually changed? 'mount -p' (which /etc/security uses) doesn't show things such as soft-updates. In fact I don't see a single mount option that does show everything... I seem to recall that David Malone chose

Re: netscape

2000-09-11 Thread Trevor Johnson
You need to install the XFree86 a.out library package. It's not needed for the bsdi-netscape ports, because those versions of Netscape are statically linked. Most people don't need the a.out X libraries for anything else. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe:

Re: PAM in ftpd.c

2000-09-11 Thread Sheldon Hearn
On Mon, 11 Sep 2000 18:57:45 +0900, Jun Kuriyama wrote: I don't know around PAM coding, but below topic is there in Japanese mailing list. o After setting /etc/skey.access, cannot login to ftpd via UNIX password. There is a patch to fix this problem in that mailing list. Could

Re: load average is 1 when no processes active; etc.

2000-09-11 Thread Bruce Evans
On Mon, 11 Sep 2000, Maxim Sobolev wrote: Bruce Evans wrote: Well, the kernel just doesn't treat it specially, so it gets counted in the load average. I'm not sure if the interrupt and other kernel processes are counted. Since they do useful work, they should be. The idle process

Re: fwd: [root: security check]

2000-09-11 Thread David Malone
I seem to recall that David Malone chose mount -p because mount without options displayed information about sync- and asyn-c reads and writes. Now, mount without options doesn't display this information. Wasn't me - I was doing seperate things with /etc/security and mount. Therefore, I

Kernel build error

2000-09-11 Thread Blaz Zupan
... cc -c -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -g -nostdinc -I- -I. -I../.. -I../../../include -D_KERNEL -include opt_global.h -elf -mpreferred-stack-boundary=2

Re: fwd: [root: security check]

2000-09-11 Thread Visigoth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 11 Sep 2000, David Malone wrote: Sounds like a good idea - we should also consider sorting the output. On the positive side you don't get warned when you unmount and remount a filesystem and it moves to the bottom of the list. On the

Last build (5 hours ago)

2000-09-11 Thread Tobias Fredriksson
After 5 hours the computer had totally locked itself... just a manual reboot again and doing the fsck on 46gig aint that fun :D I'll guess i'll do a new make world etc... output from top: last pid: 313; load averages: 1.03, 0.75, 0.37up 0+00:06:17 19:32:12 29 processes: 1 running,

No Subject

2000-09-11 Thread Mark Dyer
subscribe freebsd-current

Please review: New pkg_which version and bsd.port.mk patch.

2000-09-11 Thread Jeremy Lea
Hi, (Once again cross posted since -ports is the major consumer). At http://people.freebsd.org/~reg/ there is a new patch for "pkg_which", now implemented as two new options for pkg_info. Please review this for style and silly things... Also, if you download the bsd.port.mk patch from the

CVS, -STABLE and perl 5.6.0

2000-09-11 Thread Angelo Turetta
I don't know where this discussion really belongs go, excuse the cross-post. Please be aware I'm not on either of these lists (I know it's against the doc :-), so be so kind as to cc any reply to my address. TIA. On a freshly installed 4.1 machine (bin-only installation), I CVSUPed /usr/src