summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-03-31Enable interrupts.Marcus Glocker
2007-03-31Make sure we not to match secondary cpu's on non-MP kernel. I accidentallyMark Kettenis
didn't commit this bit, so it is still ok drahn@, gwk@.
2007-03-31Detect secondary cpu's. Get rid of legacy ofroot code.Mark Kettenis
ok drahn@, gwk@
2007-03-31more bits and the %b thing for port set/statusDavid Gwynne
2007-03-31Port Control Set register defsDavid Gwynne
2007-03-31reenable the via 8251 sata chipset. jasper proved it can work if we dontDavid Gwynne
do ncq, so this diff quirks it. tested by jasper@
2007-03-31initial atascsi glue.David Gwynne
2007-03-31the attach glue now specifies how many ports the chip has.David Gwynne
2007-03-30Make volume state transitions workMarco Peereboom
2007-03-30Add commented out entries for pyro(4).Mark Kettenis
2007-03-30Add pyro(4).Mark Kettenis
2007-03-30pyro(4)Mark Kettenis
2007-03-30First stab at a driver for the Host/PCIe bridge found on the Sun FireMark Kettenis
v215/v245/v445 systems.
2007-03-30Clarify a bit.Mark Kettenis
2007-03-30Calculate proper offset in partition table.Marco Peereboom
2007-03-30Don't assume 'run' to be executable, pointed out and okay deraadt@Pedro Martelletto
2007-03-30Remove some uneeded includes and declarations. -Wall is happy and noOtto Moerbeek
binary change. From Mark Lumsden.
2007-03-30Add regression test suite for FFS, from FreeBSD, okay art@ deraadt@Pedro Martelletto
2007-03-30Preserve the contents of the memory buffers when syslogd reinitializesCan Erkin Acar
logs in response to a HUP signal, as long as /etc/syslog.conf remains unchanged. ok mpf@
2007-03-30accept interleave of 0; pr 5431, my patch matches the author'sTheo de Raadt
2007-03-30change a misplaced splnet() in kqueue_poll() to splhigh(). fixes aReyk Floeter
random panics with kqueue under high load with many events. tested by me cookies for dlg@ deraadt@ ok dlg@ tedu@ art@
2007-03-30Use correct function name in fatalx() message.Claudio Jeker
2007-03-30sync supported machines lists with records found in dmesglog.Xavier Santolaria
OK drahn@.
2007-03-30document ECHO_REORDERMarc Espie
2007-03-30document accept can return EINTR. ok millert@ jmc@Kurt Miller
2007-03-30oops, forgot to update the entries for mbg.4 and udcf.4;Jason McIntyre
2007-03-30Restore full version reporting when using the -v and -V switch.Pierre-Yves Ritschard
This unbreaks some configuration scripts. ok henning@, xsa@, espie@
2007-03-30Shorten the description and mention "timedelta sensor" in it, so usersMarc Balmer
can find all timedelta sensor related man pages (and thus a list of supported devices) using 'man -k timedelta' or 'apropos timedelta'. Discussed with jmc.
2007-03-30the VT8251 SATA says it is ahci, but we aren't ready for it. we need toDavid Gwynne
quirk a few things before it will work. this blacklists that controller in ahci so pciide will be able to match it instead. found by jasper@
2007-03-30start filling out stuff for managing each port. this allocates it, set aDavid Gwynne
register window up, and provides access to the port registers.
2007-03-30define the size and offsets for each ports set of registersDavid Gwynne
2007-03-30replace lockmgr locks with rwlocks. these are no longer recursive, but theyDavid Gwynne
weren't used recursively anyway. tested by hsoexer@ fkr@ ok pedro@
2007-03-29sync sync sync is so 1970; ok miodTheo de Raadt
2007-03-29sync usage(); from Igor SobradoJason McIntyre
2007-03-29Add power hook to scoop(4), replacing the Zaurus-specific scoop_* calls inUwe Stuehler
pxa2x0_apm.c. Set a flag to indicate that scoop is currently suspended. Test this flag in scoop_timeout() (and maybe later in other places) to avoid manipulating scoop registers while the driver is suspended. The scoop_checkdisk timeout is intentionally not stopped, as it should be safe to have timeouts running accross suspend/resume. Put splhigh() in scoop_gpio_pin_write() to make changing the pin level an atomic operation. Result of prodding and diffs from Robert and Theo.
2007-03-29ignore various i2c seeproms that sun puts on all their machine parts; ok ↵Theo de Raadt
miod kettenis
2007-03-29I relinquish any copyright claim I have on this fileKjell Wooding
2007-03-29Indicate when macro recording is in progress on the modeline.Kjell Wooding
(This should eventually move to becoming a "real" mode.) Don't print end macro message unless the macro is being recorded. ok cloder@. looks fine art@
2007-03-29Enable acx(4) as it is finally working on bigendian boxes. OK deraadt@Claudio Jeker
2007-03-29Fix a cust & pastoTodd C. Miller
Correctly compute amount of base64 padding in checklist mode
2007-03-29Comment fixes from Daniel Dickman <didickman AT gmail DOT com>, relevant changesGordon Willem Klok
for amd64 added by myself and while here nuke some whitespace.
2007-03-29Update config because of the new way prefixlen works. The prefixlen 8 - 24Claudio Jeker
rule needs an explicit "inet" to match on IPv4 addresses only. OK henning@
2007-03-29Document the new inet and inet6 filter parameters. OK henning@Claudio Jeker
2007-03-29Until now prefixlen defaulted to AF_INET if it was used without a prefix.Claudio Jeker
This makes prefixlen filtering for AF_INET6 unnecessary complex. From now on if prefixlen is used alone the address family needs to be specified beforehands via the new inet or inet6 keywords. Remove an old check so that it is finally possible to filter IPv6 prefixes. OK henning@
2007-03-29Do not print a warning that no valid checksums were found if thereTodd C. Miller
was a single fingerprint for a file that could not be opened. The warning that the file could not be opened is sufficient. From espie@
2007-03-29Remove FW_TXDESC_GETFIELD_4() it is never used and busted.Claudio Jeker
2007-03-29The message size calculated by BSS_JOIN_PARAM_SIZE() is off by one. TheClaudio Jeker
first byte of the essid is counted double once in the sizeof() and once via essidlen. Luckily the FW command ignored the additional byte. OK mglocker@
2007-03-29Fix yet another endianess bug. bus_space(9) does all the necessary byte orderClaudio Jeker
conversions so there is no need to use htoleXX() before writing the data to the HW dma registers. With this and the previous acx.c commit acx(4) finaly works on big endian machines like macppc. OK mglocker@
2007-03-29Fix a scary bug when setting up the HW dma structure. Use a 2byte bus_spaceClaudio Jeker
access to write the mbuf lenght instead of a 4byte one. On big endian machines the length was written to the wrong field and so no TX transactions were done. OK mglocker@
2007-03-29let the description of -m match SYNOPSIS and usage(); from Igor SobradoJason McIntyre