Re: More ULE bugs fixed.

2003-10-17 Thread Bruce Evans
On Wed, 15 Oct 2003, Jeff Roberson wrote: I fixed two bugs that were exposed due to more of the kernel running outside of Giant. ULE had some issues with priority propagation that stopped it from working very well. Things should be much improved. Feedback, as always, is welcome. I'd like

DRM SMPng locking for review

2003-10-17 Thread Eric Anholt
I've been working on locking of the DRM, based off of the work that was already done for linux and ported to BSD. I think the current locking was wrong, including that it used lockmgr and simplelocks on -stable when as far as I know it was unnecessary. Also, I had marked the IRQ handlers MPSAFE

Re: More ULE bugs fixed.

2003-10-17 Thread Jeff Roberson
On Fri, 17 Oct 2003, Bruce Evans wrote: How would one test if it was an improvement on the 4BSD scheduler? It is not even competitive in my simple tests. [scripts results deleted] Summary: SCHED_ULE was more than twice as slow as SCHED_4BSD for the obj and depend stages. These stages

Re: hiding e-mail adresses needed badly

2003-10-17 Thread Peter Jeremy
[This may get duplicated if my outgoing work e-mail gets fixed] On 2003-Oct-16 11:29:36 -0700, Terry Lambert [EMAIL PROTECTED] wrote: Earthlink often sucks in terms of customer service. If they would just designate a couple of common markers as known SPAM, the problem would have gone away

Re: More ULE bugs fixed.

2003-10-17 Thread Jeff Roberson
On Fri, 17 Oct 2003, Bruce Evans wrote: On Fri, 17 Oct 2003, Jeff Roberson wrote: On Fri, 17 Oct 2003, Bruce Evans wrote: How would one test if it was an improvement on the 4BSD scheduler? It is not even competitive in my simple tests. ... At one point ULE was at least as

Re: More ULE bugs fixed.

2003-10-17 Thread Sean Chittenden
I think you cvsup'd at a bad time. I fixed a bug that would have caused the system to lock up in this case late last night. On my system it freezes for a few seconds and then returns. I can stop that by turning down the interactivity threshold. Hrm, I must concur that while ULE seems a tad

Re: panic: vm_map_wire: lookup failed

2003-10-17 Thread Alexander Leidinger
On Thu, 16 Oct 2003 22:54:43 +0200 John Hay [EMAIL PROTECTED] wrote: The latest development source of ntpd started to use setrlimit() before using mlockall(). This combination proves fatal on -current. The code in ntpd/ntpd.c looks like this: Ok, I found an easier way to provoke the

Re: More ULE bugs fixed.

2003-10-17 Thread Jeff Roberson
On Fri, 17 Oct 2003, Sean Chittenden wrote: I think you cvsup'd at a bad time. I fixed a bug that would have caused the system to lock up in this case late last night. On my system it freezes for a few seconds and then returns. I can stop that by turning down the interactivity

panic: pmap_enter: attempted pmap_enter on 4MB page

2003-10-17 Thread Jilles Tjoelker
Hello, Yesterday our 5-CURRENT box panicked with panic: pmap_enter: attempted pmap_enter on 4MB page. uname -a: FreeBSD turtle.stack.nl 5.1-CURRENT FreeBSD 5.1-CURRENT #15: Thu Oct 9 11:43:55 CEST 2003 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/TURTLE i386 This kernel includes a patch from

AES is broken.

2003-10-17 Thread Pawel Jakub Dawidek
Hello. After recent changes to AES, GBDE is borken. How to repeat: # mdconfig -a -t malloc -s 16M # gbde init /dev/md0 -L /etc/md0.lock # gbde attach md0 -l /etc/md0.lock # newfs -O2 /dev/md0.bde || echo BROKEN -- Pawel Jakub Dawidek

Re: panic: vm_map_wire: lookup failed

2003-10-17 Thread John Hay
The latest development source of ntpd started to use setrlimit() before using mlockall(). This combination proves fatal on -current. The code in ntpd/ntpd.c looks like this: Ok, I found an easier way to provoke the panic. Just compile the following program like this: if

vinum, ,GEOM, ATANG, or bad disk?

2003-10-17 Thread Daryl Chance
Hi, I'm trying to setup vinum on 2 identical 30G HD's. The MB I'm using has a built in Raid 0 controller, so i have 6 ATA Slots. My Main HD is hooked up to the primary non-raid. and the other 2 are hooked up to primary 1 and primary 2 on the raid. I can get vinum up and running, but when i

Re: ata problem with latest current

2003-10-17 Thread Tomi Vainio - Sun Finland
Hi, Current ATA code is still unusable unstable. We cvsupped latest source yesterday and tried our standard stress test copy between two vinum volumes. Once we even got 12 hour uptime but today it won't take longer than couple minutes before system freezes. Situation is even worse if we

Re: Darwin/OSX Bluetooth code

2003-10-17 Thread Peter Pentchev
On Thu, Oct 16, 2003 at 09:00:02PM -0700, Maksim Yevmenkin wrote: [snip] I'm currently thinking about un-Netgraph'ing FreeBSD code to make it portable to other BSD style systems. I'm trying to look at other implementations and learn as much as i can. In particular i'm trying to figure out how

Re: More ULE bugs fixed.

2003-10-17 Thread Sean Chittenden
I think you cvsup'd at a bad time. I fixed a bug that would have caused the system to lock up in this case late last night. On my system it freezes for a few seconds and then returns. I can stop that by turning down the interactivity threshold. Hrm, I must concur that while ULE

ULE/KSE deadlock

2003-10-17 Thread Thomas E. Zander
Hi, first the good news: sched_ule 1.65 seems to perform smoother under load for me, almost no mouse sluggishness anymore. Unfortunately I'm unable to use kse since the buildworld 2 hours ago. As soon as nautilus starts during gnome startup the system completely freezes. Using libc_r everything

Re: ULE/KSE deadlock

2003-10-17 Thread Arjan van Leeuwen
On Friday 17 October 2003 18:24, Thomas E. Zander wrote: Hi, first the good news: sched_ule 1.65 seems to perform smoother under load for me, almost no mouse sluggishness anymore. Unfortunately I'm unable to use kse since the buildworld 2 hours ago. As soon as nautilus starts during gnome

Re: panic: pmap_enter: attempted pmap_enter on 4MB page

2003-10-17 Thread Peter Wemm
Jilles Tjoelker wrote: Hello, Yesterday our 5-CURRENT box panicked with panic: pmap_enter: attempted pmap_enter on 4MB page. [..] (kgdb) p va $1 = 689672192 (kgdb) p pte $2 = (pt_entry_t *) 0xbfca46e4 (kgdb) p origpte $3 = 3503345872 (kgdb) p (void *)va $4 = (void *) 0x291b9000

Re: Darwin/OSX Bluetooth code

2003-10-17 Thread Maksim Yevmenkin
Peter, I'm currently thinking about un-Netgraph'ing FreeBSD code to make it portable to other BSD style systems. I'm trying to look at other implementations and learn as much as i can. In particular i'm trying to figure out how to minimize OS dependent code and what is the right

FYI, I've switched my primary desktop to AMD64.

2003-10-17 Thread Peter Wemm
I finally worked up the nerve to commit to eating my own dogfood. :-) I've actually been doing my primary development on amd64 boxes for a while, and now that the consumer products have been officially launched, I figured it was about time. Most of the key components are in place. I've

Re: [acpi-jp 2745] ACPI, USB, and the tangled web

2003-10-17 Thread Nate Lawson
On Thu, 16 Oct 2003, Anish Mistry wrote: -BEGIN PGP SIGNED MESSAGE- Um, that's great. :) First off, if you've been following my dabbling in fixing the USB resume problem on my laptop you know that I have been plauged by the infamous restart on second suspend with a usb device being

Re: FYI, I've switched my primary desktop to AMD64.

2003-10-17 Thread Joe Marcus Clarke
On Fri, 2003-10-17 at 13:17, Peter Wemm wrote: [snip] I've been working on getting mozilla-firebird up and running but that is easier said than done because the core infrastructure (nspr, xpcom etc) haven't got official support for amd64 yet. There are patches in the bugzilla database

Re: [acpi-jp 2746] Re: ACPI, USB, and the tangled web

2003-10-17 Thread Michael Smith
On Oct 17, 2003, at 10:25 AM, Nate Lawson wrote: The problem is USB although ACPI magnifies it. USB devices can generate wake events. In my current testing of a new acpi_cpu driver, I've found that just having the USB bus enabled in the kernel (with no devices attached) causes it to generate

Re: More ULE bugs fixed.

2003-10-17 Thread Matteo Riondato
Il Mer, 2003-10-15 alle 09:51, Jeff Roberson ha scritto: I fixed two bugs that were exposed due to more of the kernel running outside of Giant. ULE had some issues with priority propagation that stopped it from working very well. Things should be much improved. On my Athlon XP 2000+ the

Re: Seeing system-lockups on recent current

2003-10-17 Thread Garance A Drosihn
At 11:52 PM +0200 10/10/03, Dag-Erling Smørgrav wrote: Doug White [EMAIL PROTECTED] writes: On Fri, 10 Oct 2003, Garance A Drosihn wrote: For the past week or so, I have been having a frustrating time with my freebsd-current/i386 system. It is a dual Athlon system. [...] It would be

atacontrol

2003-10-17 Thread Derek Tattersall
I have a new motherboard, ASUS A7V600, which replaced an ASU CUSL. Everythin else is as it was on the original. With a CURRENT from last Sunday, FreeBSD lorne.arm.org 5.1-CURRENT FreeBSD 5.1-CURRENT #8: Sun Oct 12 10:00:41 EDT 2003 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/LORNE i386 when I

Re: AES is broken.

2003-10-17 Thread Poul-Henning Kamp
I seem to be able to confirm this. You can use the following sequence to run regression test on GBDE cd /usr/src/sbin/gbde make test For stuff like AES we should _really_ have a standalone regression test. Anyone out there willing to make one from the official AES test-vectors

[current tinderbox] failure on i386/i386

2003-10-17 Thread Tinderbox
TB --- 2003-10-17 18:36:44 - tinderbox 2.2 running on cueball.rtp.FreeBSD.org TB --- 2003-10-17 18:36:44 - starting CURRENT tinderbox run for i386/i386 TB --- 2003-10-17 18:36:44 - checking out the source tree TB --- cd /home/des/tinderbox/CURRENT/i386/i386 TB --- /usr/bin/cvs -f -R -q

Re: AES is broken.

2003-10-17 Thread Mark Murray
Poul-Henning Kamp writes: For stuff like AES we should _really_ have a standalone regression test. Anyone out there willing to make one from the official AES test-vectors from NIST ? Yeah. I can do this. Gimme a day or three. M -- Mark Murray iumop ap!sdn w,I idlaH

Re: [acpi-jp 2746] Re: ACPI, USB, and the tangled web

2003-10-17 Thread Anish Mistry
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Friday 17 October 2003 01:25 pm, Nate Lawson wrote: The problem is USB although ACPI magnifies it. USB devices can generate wake events. In my current testing of a new acpi_cpu driver, I've found that just having the USB bus enabled in the

Re: panic: pmap_enter: attempted pmap_enter on 4MB page

2003-10-17 Thread Barney Wolff
On Fri, Oct 17, 2003 at 09:51:57AM -0700, Peter Wemm wrote: AHA! origpte being 0xd0d0d0d0 means that something really came unstuck because that is the fill pattern that userland malloc(3) uses. The 4MB page thing is a red herring, it just happens that PG_PS (0x80) is a set bit in the fill

[current tinderbox] failure on i386/pc98

2003-10-17 Thread Tinderbox
TB --- 2003-10-17 20:02:22 - tinderbox 2.2 running on cueball.rtp.FreeBSD.org TB --- 2003-10-17 20:02:22 - starting CURRENT tinderbox run for i386/pc98 TB --- 2003-10-17 20:02:22 - checking out the source tree TB --- cd /home/des/tinderbox/CURRENT/i386/pc98 TB --- /usr/bin/cvs -f -R -q

Fwd: cvs commit: src/sys/net80211 ieee80211_output.c ieee80211_var.h

2003-10-17 Thread Sam Leffler
This fixes adhoc mode for wi devices. Adhoc mode is still not working correctly for ath devices. No eta on fixing it. Sam ---BeginMessage--- sam 2003/10/17 14:54:59 PDT FreeBSD src repository Modified files: sys/net80211 ieee80211_output.c ieee80211_var.h

Re: cvs commit: src/sys/net80211 ieee80211_output.c ieee80211_var.h

2003-10-17 Thread marcos
Hi Sam, thanks. But we made e throughput tets in the Hostap mode and the AP crash after 4 min of traffic. We try with differents card but still the same thanks Marcos - Original Message - From: Sam Leffler [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, October 18, 2003 11:02 AM

conexant 878a hauppauge card

2003-10-17 Thread bertrand kotewall
Dear sirs, I located a hauppauge card that had a conexant 878a chipset on it. This is an video capture card which should supposedly work under the brooktree driver. The reason I say this is that I found a success story of somone using the pinnacle branded card of the same chipset

Re: Darwin/OSX Bluetooth code

2003-10-17 Thread Marcin Dalecki
Peter Pentchev wrote: You've done some great work on BlueTooth. IMHO, it would be a mistake to try to un-NetGraph it; there have been lots of rumours about people porting the NetGraph framework to other OS's, and if BlueTooth support will provide yet one more reason for the need to do this, so

[current tinderbox] failure on ia64/ia64

2003-10-17 Thread Tinderbox
TB --- 2003-10-17 21:22:57 - tinderbox 2.2 running on cueball.rtp.FreeBSD.org TB --- 2003-10-17 21:22:57 - starting CURRENT tinderbox run for ia64/ia64 TB --- 2003-10-17 21:22:57 - checking out the source tree TB --- cd /home/des/tinderbox/CURRENT/ia64/ia64 TB --- /usr/bin/cvs -f -R -q

see you all in 7 weeks

2003-10-17 Thread Julian Elischer
I'm off for 7 weeks in Hungary and Australia.. I've just turned off delivery for my list subscriptions but I'll still be looking at emails sent directly to me.. see you all in December! Julian ___ [EMAIL PROTECTED] mailing list

Re: More ULE bugs fixed.

2003-10-17 Thread Sean Chittenden
I think you cvsup'd at a bad time. I fixed a bug that would have caused the system to lock up in this case late last night. On my system it freezes for a few seconds and then returns. I can stop that by turning down the interactivity threshold. Hrm, I must concur that

[current tinderbox] failure on sparc64/sparc64

2003-10-17 Thread Tinderbox
TB --- 2003-10-17 22:57:30 - tinderbox 2.2 running on cueball.rtp.FreeBSD.org TB --- 2003-10-17 22:57:30 - starting CURRENT tinderbox run for sparc64/sparc64 TB --- 2003-10-17 22:57:30 - checking out the source tree TB --- cd /home/des/tinderbox/CURRENT/sparc64/sparc64 TB --- /usr/bin/cvs -f -R -q

Re: conexant 878a hauppauge card

2003-10-17 Thread Doug White
Please wrap your lines. Thanks. On Fri, 17 Oct 2003, bertrand kotewall wrote: I located a hauppauge card that had a conexant 878a chipset on it. This is an video capture card which should supposedly work under the brooktree driver. The reason I say this is that I found a success story

Re: Darwin/OSX Bluetooth code

2003-10-17 Thread Christian Weisgerber
Peter Pentchev [EMAIL PROTECTED] wrote: You've done some great work on BlueTooth. IMHO, it would be a mistake to try to un-NetGraph it; there have been lots of rumours about people porting the NetGraph framework to other OS's, and if BlueTooth support will provide yet one more reason for the

samba-libsmbclient

2003-10-17 Thread Janet Sullivan
Is anyone able to successfully compile the newest /usr/ports/net/samba-libsmbclient under CURRENT? ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: samba-libsmbclient

2003-10-17 Thread Kris Kennaway
On Fri, Oct 17, 2003 at 06:19:55PM -0700, Janet Sullivan wrote: Is anyone able to successfully compile the newest /usr/ports/net/samba-libsmbclient under CURRENT? http://bento.freebsd.org says yes. Kris pgp0.pgp Description: PGP signature

ip stack broken?

2003-10-17 Thread mjoyner
When I use a current kernel, my system will obtain an ip address via dhclient, but thereafter, it cannot see the network. I have tried switching ethernet cards. (used both a dc0 and an fxp0) Am currently using a 5.1-RELEASE kernel to have network access. Advice? BOOT MESSAGES: Oct 17 18:37:07

Re: conexant 878a hauppauge card

2003-10-17 Thread bertrand kotewall
On Fri, Oct 17, 2003 at 05:18:33PM -0700, Doug White wrote: Please wrap your lines. Thanks. Looks like the IDs just need to be added for your card. Can you post the output of pciconf -lv so we can add them? Thanks! Sorry about the unwrapped lines... Here are the pertinent lines to the

ip_divert.c lock order reversal

2003-10-17 Thread Craig Rodrigues
Hi, I just cvsup'd and noticed the following: Starting sshd. lock order reversal 1st 0xc2ee3998 inp (inp) @ /usr/src/sys/netinet/udp_usrreq.c:1042 2nd 0xc094876c div (div) @ /usr/src/sys/netinet/ip_divert.c:225 Stack backtrace: backtrace(c08643de,c094876c,c087b2de,c087b2de,c086b1c6) at

Re: Atheros Throughput TEST!

2003-10-17 Thread Brad Knowles
At 5:30 PM +1300 2003/10/17, Marcos Biscaysaqu wrote: We made a Throughput test with 2 different wireless card DLINK and NETGEAR , with a ftp traffic in both ways with no diference between the DLINK and NETGEAR card, Very good speed but the Freebsd AP crash after 4 min. Try pathrate

Re: ip_divert.c lock order reversal

2003-10-17 Thread Craig Rodrigues
Hi, I am seeing an occasional kernel panic. I think it is related to natd and ip_divert Fatal trap 3: breakpoint instruction fault while in kernel mode instruction pointer = 0x8:0xc07e6c24 stack pointer = 0x10:0xce7026c4 frame pointer = 0x10:0xce7026d0 code segment

Re: Atheros Throughput TEST!

2003-10-17 Thread marcos
we made it, we made lots of test, but the wireless card keep crashing every 4 min check this out: http://202.49.92.224/atheros/TESTFAst.html - Original Message - From: Brad Knowles [EMAIL PROTECTED] To: Marcos Biscaysaqu [EMAIL PROTECTED] Cc: Marcos Biscaysaqu [EMAIL PROTECTED]; [EMAIL

Re: panic with cdrecord -- anybody else seeing this? [backtrace obtained]

2003-10-17 Thread John Reynolds
[ On Wednesday, October 15, Bruce M Simpson wrote: ] On Mon, Oct 13, 2003 at 05:26:59AM -0700, John Reynolds wrote: Thanks. I haven't tried cdrtools-devel in a while so I probably didn't see the work-around that was committed. I will try it and report back as to if it works (to further

Help saving my system

2003-10-17 Thread Jason Dictos
Hi Guys, here's the scenario: 1. Had FreeBSD 5.1 system running. 2. Did a cvsup get of stable (that's right, stable, so 4.9) 3. Compiled make buildworld, then did a make build world, and re-compiled with generic kernel 4. Booted into a system which could not mount the file system (expected since

Re: 5.1 current make buildworld fails consistently on crtstuff.c- Help?

2003-10-17 Thread Kris Kennaway
On Mon, Oct 13, 2003 at 07:52:34PM -0400, Scott W wrote: cc -O -pipe -DSMP -DAPIC_IO -march=pentiumpro -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align -Wcast-qual -Wchar-subscripts -Winline -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wredundant-decls -Wshadow