Re: Power Patches

2004-01-02 Thread Lukas Ertl
On Thu, 1 Jan 2004, M. Warner Losh wrote: You should try it if: 1) You are using hw.pci.unsupported_io=1. Turn it off and use these patches. Let me know if it doesn't. Typically it appears that this helps people hitting the double allocation problem.

SGI ARC x86 boxen diffs

2004-01-02 Thread Bruce M Simpson
I've burned up too much time over the holidays on trying to get our loader pointed to ARC x86 on the SGI Visual Workstation, and didn't really get anywhere. If anyone has such a box and wants a starting point, go here:- http://people.freebsd.org/~bms/dump/loader-arc-x86-sgi.diff You'll

Re: Power Patches

2004-01-02 Thread Hajimu UMEMOTO
Hi, On Thu, 01 Jan 2004 23:30:09 -0700 (MST) M. Warner Losh [EMAIL PROTECTED] said: imp John Baldwin, Nate and I are putting the final touches on the imp power/resource patches. Please try them out and let me know how well imp they work for you. imp

Re: utility to set idle timeout on ata drives

2004-01-02 Thread Bruce Cran
On Thu, Jan 01, 2004 at 10:33:03PM -0500, Matthew N. Dodd wrote: On Thu, 1 Jan 2004, Bruce Cran wrote: If people are interested I can add more power management features and possibly create a package/port of it. It it really necessary to use a configure script and associated junk to build

Re: Power Patches

2004-01-02 Thread M. Warner Losh
In message: [EMAIL PROTECTED] Hajimu UMEMOTO [EMAIL PROTECTED] writes: : It fails to attach my Atheros card (I/O-Data WN-AG/CB): : : Jan 3 01:34:04 lyrics kernel: cardbus0: Resource not specified in CIS: id=10, size=800 : Jan 3 01:34:04 lyrics kernel: cardbus0: Resource not

Re: Power Patches

2004-01-02 Thread M. Warner Losh
In message: [EMAIL PROTECTED] Lukas Ertl [EMAIL PROTECTED] writes: : *) I still need to set hw.pci.allow_unsupported_io_range=1, otherwise :cbb0 wouldn't attach: OK. Can you send me the results of the following command: pciconf -r pci0:30:0 0:0xff Thanks! And thank you for

Re: Power Patches

2004-01-02 Thread Lukas Ertl
On Fri, 2 Jan 2004, M. Warner Losh wrote: Can you send me the results of the following command: pciconf -r pci0:30:0 0:0xff Here it is: # pciconf -r pci0:30:0 0:0xff 24488086 80800107 06040081 0001 40080200 22808040 cff0c020 eff0e800

[PATCH] sendfile erroniously returns ENOTCONN.

2004-01-02 Thread Alfred Perlstein
sendfile(2) returns ENOTCONN when the remote side has disconnected instead of EPIPE. Can this fix be applied? Is there a reason for it being the way it is? I know EPIPE can cause SIGPIPE which can cause problems, but the error here is incorrect, and considering that the manpage mentions EPIPE

Re: Power Patches

2004-01-02 Thread Masahide -mac- NODA
Hi, all. From: M. Warner Losh [EMAIL PROTECTED] Subject: Power Patches Date: Thu, 01 Jan 2004 23:30:09 -0700 (MST) Message-ID: [EMAIL PROTECTED] imp John Baldwin, Nate and I are putting the final touches on the imp power/resource patches. Please try them out and let me know how well imp they

Calling all boat anchors!

2004-01-02 Thread The TenDRA Project
The TenDRA project (http://www.ten15.org) has come a long way in the vibrant two years that have passed. Development has been quite steady and as a result of this a lot of excellent changes have been brought into TenDRA to help make it one of the most modern compilers available. We're now at the

Re: Power Patches

2004-01-02 Thread David Gilbert
I installed your power patches dated 20040101 on my Dell D-800. The boot fails in a curious way. It finds the ATA controller, but doesn't find either the disk or the CDROM in the machine. I did a -v boot, but I didn't see anything more significant. I don't know what you need to proceed on this

Re: [PATCH] sendfile erroniously returns ENOTCONN.

2004-01-02 Thread Alfred Perlstein
* David G. Lawrence [EMAIL PROTECTED] [040102 21:41] wrote: sendfile(8) tries to maintain compatibility with sosend as much as is reasonable. ENOTCONN is the appropriate error to return if the socket isn't connected. sosend checks SS_CANTSENDMORE prior to the check for SS_ISCONNECTED,