Re: ports/26307: libc_r aborts when using the KDE media player (noatun) with the sound server(aRts)

2001-04-03 Thread Maxim Sobolev
[EMAIL PROTECTED] wrote: > Synopsis: libc_r aborts when using the KDE media player (noatun) with the sound >server(aRts) > > Responsible-Changed-From-To: freebsd-bugs->freebsd-ports > Responsible-Changed-By: dd > Responsible-Changed-When: Mon Apr 2 19:53:15 PDT 2001 > Responsible-Changed-Why: >

Re: i586 FP optimizations hosed.

2001-04-03 Thread Bruce Evans
On Mon, 2 Apr 2001, John Baldwin wrote: > On 31-Mar-01 Bruce Evans wrote: > > [about i586-optimized copying and bzeroing] > > - we start using the FPU on a CPU with a free FPU (we used to free the > > FPU in some cases; now we only use optimizations in bcopy/bzero if > > the FPU was free to b

Re: buildkernel fails with random device

2001-04-03 Thread Kris Kennaway
On Sun, Apr 01, 2001 at 03:16:42PM +1000, Andrew Newlands wrote: > If I attempt to build a kernel with the random device it bombs out with this > message: > > Error output: > > make: don't know how to make /usr/src/sys/crypto/rijndael/rijndael-alg-fst.c. Stop > > The kernel build happily if I c

Re: i586 FP optimizations hosed.

2001-04-03 Thread John Baldwin
On 03-Apr-01 Bruce Evans wrote: > On Mon, 2 Apr 2001, John Baldwin wrote: > >> On 31-Mar-01 Bruce Evans wrote: >> > [about i586-optimized copying and bzeroing] >> > - we start using the FPU on a CPU with a free FPU (we used to free the >> > FPU in some cases; now we only use optimizations in b

Re: i586 FP optimizations hosed.

2001-04-03 Thread Matt Dillon
How about this: * a per-process fp-in-use flag * a per-cpu fp-save-block ID (incrementing serial number) When a context switch from process A to process B occurs: if (process-A-using-FP) { increment ID save FP state for process A and ID

More xl0 watchdog timeout probs

2001-04-03 Thread Anil Jangity
[please include me in Cc as I am not subscribed to the list] I looked through nearly all threads containing this topic and I am still stuck. I have tried some of the solutions posted but to no avail: Src I am using: Current (Mar 30) SYS/ (April 2) I am seeing that xl0: chip is in D6 power mod

Re: i586 FP optimizations hosed.

2001-04-03 Thread Matt Dillon
:* Kernel bcopy operation in case where no process switch occurs : (i.e. current process was using the FP and while we went into : kernel mode, we have not yet saved the FP state anywhere). : : if (process-A-using-FP) { : push FP state for process A on stack :

Re: i586 FP optimizations hosed.

2001-04-03 Thread Jeroen Ruigrok/Asmodai
-On [20010331 05:30], John Baldwin ([EMAIL PROTECTED]) wrote: >It looks like it is just broken in the SMP case. Note: I got a i586_bzero_oops on an UP box. It was invoked through the random_process and the random_kthread. -- Jeroen Ruigrok van der Werven/Asmodai .oUo. asmodai@[wxs.nl|freebsd.o

Re: buildkernel fails with random device

2001-04-03 Thread Andrew Newlands
On Tue, Apr 03, 2001 at 08:12:08AM -0700, Kris Kennaway wrote: > On Sun, Apr 01, 2001 at 03:16:42PM +1000, Andrew Newlands wrote: > > If I attempt to build a kernel with the random device it bombs out with this > > message: > > > > Error output: > > > > make: don't know how to make /usr/src/sys/

pppoe, userland ppp

2001-04-03 Thread Leif Neland
I'd like to try pppoe to connect to poptop (on a linuxbox). The port is forbidden; I should use ng_pppoe. I haven't done netgraph stuff before; afaiu I should attach ng_pppoe to a node which is the physical device. But I'm doing userland ppp, and tun0 is not a node. ngctl list shows this: Ther

Re: i586 FP optimizations hosed.

2001-04-03 Thread Bruce Evans
On Tue, 3 Apr 2001, Jeroen Ruigrok/Asmodai wrote: > -On [20010331 05:30], John Baldwin ([EMAIL PROTECTED]) wrote: > >It looks like it is just broken in the SMP case. > > Note: I got a i586_bzero_oops on an UP box. > > It was invoked through the random_process and the random_kthread. This means