summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-02-22general includes cleanup sweep. ok joris@ niallo@Otto Moerbeek
2007-02-22an unused define and an unused decl. From Mark Lumsden.Otto Moerbeek
2007-02-22New resource mapper interface and structuresJordan Hargrave
ok marco@
2007-02-22spacingReyk Floeter
2007-02-22spacingReyk Floeter
2007-02-22document the retry option before setting the state to down for hostsReyk Floeter
in tables.
2007-02-22document the new options to manipulate carp demotion counters.Reyk Floeter
2007-02-22Print base so that we can make a correct mapping between apic and irq.Marco Peereboom
ok jordan
2007-02-22Add layer 7 functionality to hoststated used for layer 7Reyk Floeter
loadbalancing, SSL acceleration, general-purpose TCP relaying, and transparent proxying. see hoststated.conf(5) and my upcoming article on undeadly.org for details. ok to commit deraadt@ pyr@
2007-02-22Expand description.Ray Lai
Help and okay jmc@.
2007-02-22Fix regression tests. False positives happened whenever the date/timeRay Lai
contained 1.3, 1.4, or 1.5. ``hahahahahaha'' joris@.
2007-02-22Always write the disklabel to disk when asked, even if it appears toKenneth R Westerback
be unchanged. Fixes PR#5209. Proper behaviour of 'q'uit still under discussion. ok ray@ millert@ ckuethe@ nick@
2007-02-22Defer printing of the per-file diff header until after the regexpTodd C. Miller
"ignore" processing has finished. This way we only print the header for files that have diffs. The new behavior matches GNU diff (which is where the -I flag comes from). OK otto@ espie@
2007-02-22Pass sizeof(buf) to fgets instead of hard-coded number.Ray Lai
From Charles Longeau. OK moritz@ and jakob@.
2007-02-21Fix a reference to WFHARD in a comment; it was renamed WFFULL monthsDeanna Phillips
ago. ok kjell
2007-02-21Add missing sensor description for temperature.Deanna Phillips
ok dlg
2007-02-21Long awaiting modernization:Miod Vallat
- reset the drive and fetch its identification strings during probe, and do not attach if they don't look good. - do not store synchronous command blocks (used by hdreset) in the softc, since they are not processed asynchronously. The stack will do. - cleanup the disklabel retrieval code. - use disk_{,un}lock instead of rolling our own equivalent. - use bounds_check_with_label() in hdstrategy() instead of a stripped-down inline version of it. Tested on 7957A.
2007-02-21Fix stuttering audio playback as reported by Igor Grabin.Marco Peereboom
Tested by several folks and ok canacar
2007-02-21part missed in PAE revert: ptoa() paddr_t size is no longer printedTheo de Raadt
with %llu; ok miod
2007-02-21Don't use arbitrary 128 bytes as size of the blf key array if we know exactlyAlexander von Gernler
how much blowfish takes at max, which is 72 bytes. Also define a constant for this in the include file, suggested by ray@. ok pedro@ thib@ tedu@
2007-02-21Make an acpi-enabled GENERIC.MP work on systems that only support PIC mode.Mark Kettenis
ok marco@
2007-02-21make sure checkout_rev() sets correct file permissions via file->rf_modeNiall O'Higgins
in case where fstat() of file->rf_fd won't give us right mode. fixes PR #5383 ok xsa@
2007-02-21Create "syslogd: restart" message after the setup of signalMarco Pfatschbacher
handlers. This prevents a race where syslogd could die on SIGPIPE at startup. Also distinguish between start and restart. OK henning@
2007-02-21put -L and -G in the right place;Jason McIntyre
2007-02-21put -G in the right place; from Igor SobradoJason McIntyre
2007-02-21order options; from Igor SobradoJason McIntyre
2007-02-21sort options; sync synopsis and usage()Jason McIntyre
from Igor Sobrado
2007-02-21Sync with reality. Initial diff by Ingo Schwarze additional help by jmc@Claudio Jeker
2007-02-21Make the firmware load on big endian systems and while there make sure thatClaudio Jeker
the right value is printed in case of an error. OK mglocker@
2007-02-21For TUNSIFMODE protect the if_flags similar to the TUNSIFINFO case.Claudio Jeker
Don't allow the userland to fiddle with flags reserved by the driver. Noticed by Ingo Schwarze.
2007-02-21syncTheo de Raadt
2007-02-21put structs after copyright notice; ok dlgTheo de Raadt
2007-02-21hand-cruft an isprint() for deciding which characters to echo to theTheo de Raadt
console; ignore all others. based on idea by didickman@gmail.com, ok tom
2007-02-21regen for inclusion of the structs used in pcidevs_data.hDavid Gwynne
2007-02-21put the structs defining the content of pcidevs_data.h into that headerDavid Gwynne
file, rather than in pci_subr.c before theyre used. this allows the header to be used elsewhere without needing to copy a chunk out of pci_subr.c. ok miod@ deraadt@
2007-02-21remove part of buf abuse and store errcnt in softc (instead of b_errcnt); ↵Michael Shalayeff
more work can be done to lower buf abuse even more; miod@ testing and ok
2007-02-21Clear alarm() before restarting sshd on SIGHUP. Without this, if there'sDarren Tucker
a SIGALRM pending (for SSH1 key regeneration) when sshd is SIGHUP'ed, the newly exec'ed sshd will get the SIGALRM and not have a handler for it, and the default action will terminate the listening sshd. Analysis and patch from andrew at gaul.org.
2007-02-21simplify synopsis and usage(); from Igor SobradoJason McIntyre
2007-02-21from brad:Jason McIntyre
Hardware VLAN stripping was removed by Camiel before 3.8. ok camiel
2007-02-21net.inet.esp.udpencap is enabled by default;Jason McIntyre
from jared rr spiegel: documentation/5385
2007-02-21add Option GlobeTrotter 3G+ to the list of devices supported by ubsa(4)Felix Kronlage
2007-02-21let the Globetrotter 3G+ attach to ubsa, from Victor Meghesan through bugs@Felix Kronlage
2007-02-21regenFelix Kronlage
2007-02-21usb device id for Globetrotter 3G+ from Victor Meghesan through bugs@Felix Kronlage
2007-02-21Fix a few memory leaks.Marco Peereboom
ok jordan@
2007-02-21Simplify cvs_buf_differ(). Also cvs_buf_differ(), a comparisonRay Lai
function, should not do any resource freeing. OK joris@.
2007-02-21KNFMarco Peereboom
2007-02-21Replace a manual xrealloc with rcsnum_setsize.Ray Lai
From Charles Longeau <chl at tuxfamily dot org>. OK joris@.
2007-02-21Some Sony VAIOs use the wrong eventing type. Work around that by honering it.Marco Peereboom
Found by giovanni <qgiovanni @ gmail . com> ok jordan
2007-02-21- Pass full buffer size to fgets.Ray Lai
- No need to initialize buffer. - Spacing. Based on diff from Charles Longeau <chl at tuxfamily dot org> long ago. OK moritz@.