ACPI patch: Fix CondRef target

2011-06-01 Thread Jordan Hargrave
This patch fixes CondRef store to empty target seen on Dell E4310 and some HP systems. Please test and send dmesg output. Index: dsdt.c === RCS file: /cvs/src/sys/dev/acpi/dsdt.c,v retrieving revision 1.185 diff -u -p -b -r1.185 dsdt

Oferta solo durante Junio 2.011

2011-06-01 Thread Rincon de Luz Arte
[IMAGE] Newsletter 3 - Aqo I - junio 2011 - noveda...@rincondeluzarte.com.ar [IMAGE]Qui son los Chakras? La palabra chakra proviene del sanscrito y se traduce como rueda, por referirse a las ruedas de energma del cuerpo etireo que da vida a una parte de nuestro cuerpo fmsico. La energma que actz

ahci msi_map with fallback

2011-06-01 Thread Kenneth R Westerback
Try msi and fallback to old intr mapping. Works on my box where the ahci is on a non-msi bus. ok? Ken Index: ahci.c === RCS file: /cvs/src/sys/dev/pci/ahci.c,v retrieving revision 1.178 diff -u -p -r1.178 ahci.c --- ahci.c

disklabel -e loses (temporarily) bounds

2011-06-01 Thread Kenneth R Westerback
matthew@ noticed that using 'disklabel -e' seems to lose the starting and ending bounds for the OpenBSD area on the disk. This is a result of getasciilabel() deliberately ignoring label fields that are forcibly set by the OS when the disklabel is read. If you reboot or otherwise force the disklabe

Re: ospf6d crashes on interface add

2011-06-01 Thread Martin Pelikan
Hi! So my last attempt wasn't met with much appreciation, so I'll slow down: - when I add a vlan(4), vether(4) or something, my ospf6d dies - I don't like that - therefore, with new release comes new diff - this time I tried to make it as small as possible, in separate parts It doesn't fix depar

Re: issues with yacc/lex(er) from OpenBSD across my rules/grammer

2011-06-01 Thread Otto Moerbeek
On Wed, Jun 01, 2011 at 10:54:05AM +0200, Rafael Sadowski wrote: > Hello @tech, > > I hope anybody can help my with my yacc rules/grammer. I can't find bugs > in my grammer. I think the problem is in the lexer but I have no idea, > how debug it. GDB tells me: "No Source Available" for yyparse ().

issues with yacc/lex(er) from OpenBSD across my rules/grammer

2011-06-01 Thread Rafael Sadowski
Hello @tech, I hope anybody can help my with my yacc rules/grammer. I can't find bugs in my grammer. I think the problem is in the lexer but I have no idea, how debug it. GDB tells me: "No Source Available" for yyparse (). Any advice, how debug it? This is my first experience with YACC! Maybe an

bc(1): ^D tweaks

2011-06-01 Thread Otto Moerbeek
Hi, When quitting bc with EOF, it's unpleasing to see the ^D echoed by editline. Additionaly, after a ^C we want ^D to work as expected: only at the start of line. So take into account the position of the cursor and skipchars. ok? -Otto Index: bc.y =