aucat: suggest using -v100 ?

2011-05-26 Thread Alexandre Ratchov
This is to suggest using -v100 to avoid volume jumps when more than one stream are played at the same time. OK? Or should we just say ``for normal use: -v100'', assuming nowadays nobody listens to a single stream at the same :) -- Alexandre Index: rc.conf

Fix ACPI Asus panics at boot time

2011-05-26 Thread Paul Irofti
Please test this diff on your assus laptops and get back to me with the results. It should make your booting problems go away. Index: acpi.c === RCS file: /cvs/src/sys/dev/acpi/acpi.c,v retrieving revision 1.224 diff -u -p -r1.224

pipe kqfilter return values

2011-05-26 Thread Nicholas Marriott
kq attach functions should return an errno so 1 is wrong spotted while looking at kq/pipe problem, there are lots of others in the tree but that's for later ok? Index: sys_pipe.c === RCS file: /cvs/src/sys/kern/sys_pipe.c,v

Re: aucat: suggest using -v100 ?

2011-05-26 Thread Alexandre Ratchov
On Thu, May 26, 2011 at 10:31:33AM +0100, Stuart Henderson wrote: On 2011/05/26 09:56, Alexandre Ratchov wrote: This is to suggest using -v100 to avoid volume jumps when more than one stream are played at the same time. OK? Or should we just say ``for normal use: -v100'', assuming

Re: Fix ACPI Asus panics at boot time

2011-05-26 Thread Paul M
On 26/05/2011, at 8:59 PM, Paul Irofti wrote: Please test this diff on your assus laptops and get back to me with the results. It should make your booting problems go away. Index: acpi.c === RCS file:

Re: [PATCH] Bypass routing table for mcast packets when using IP_MULTICAST_IF

2011-05-26 Thread Christiano F. Haesbaert
On 26 May 2011 05:11, Claudio Jeker cje...@diehard.n-r-g.com wrote: I guess nobody cares much about multicast. I still would like to get this in so that we can remove code from ldpd and ripd to insert special multicast routes. I will commit this in the next few days. I did some really basic

Re: Deprecating mips-openbsd

2011-05-26 Thread Andrew Haley
On 05/24/2011 10:40 AM, Andrew Haley wrote: On 23/05/11 19:35, Richard Sandiford wrote: According to: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47110 mips-openbsd does not build in 4.6. I haven't seen any activity on this port for years. Would anyone object to its deprecation?

Re: bc and editline

2011-05-26 Thread Otto Moerbeek
On Thu, May 26, 2011 at 07:02:55AM +0200, Otto Moerbeek wrote: Hi, adding editline caused a regrssion in the handling of ^C. Originally (and I mean the days of ATT) bc used ^C as an abort line. With editline, while appearing to work, the characters typed so far remain in the input

Re: disable wbng

2011-05-26 Thread Alexey Suslikov
On Sat, May 21, 2011 at 22:42, Chris Cappuccio ch...@nmedia.net wrote: Alexey Suslikov [alexey.susli...@gmail.com] wrote: I have to disable wbsio(4) on X8SIL-based Supermicro box since leaving it enabled leads to weird things: sudden overheating alarms while no overheating, front panel fault

Radeon HD 4350 variant diff

2011-05-26 Thread Joe Gidi
Last week I picked up another Radeon HD 4350 card, expecting it to just work like another 4350 I own. For whatever reason, the new card (same manufacturer, same part number) has a different PCI ID and didn't work until I patched in support for it. I wasn't exactly sure what to call this new card;

Re: pipe kqfilter return values

2011-05-26 Thread Philip Guenther
On Thu, May 26, 2011 at 2:17 AM, Nicholas Marriott nicholas.marri...@gmail.com wrote: kq attach functions should return an errno so 1 is wrong spotted while looking at kq/pipe problem, there are lots of others in the tree but that's for later ok? Yeah, seems obviously correct to me. ok