summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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@.
2007-02-21Fixed deref for storing to local after CondRef opJordan Hargrave
ok marco@
2007-02-21Don't unconditionally spin up SDEV_UMASS devices. They almostKenneth R Westerback
certainly don't need it, or are capable of reporting themselves in need of a spin up. Feedback from various agreeing it is unlikely such devices exist. Fixes devices found by Markus Bergkvist and Johan M:son Lindman. ok dlg@
2007-02-20It helps to enable hpet... This fixes bnx not working on amd64.Marco Peereboom
2007-02-20rename ccb_id to ccb_slot so its more clear what its used for. stash aDavid Gwynne
pointer to the port and the ata_xfer in there too.
2007-02-20oops, missed one in the cmd list entryDavid Gwynne
2007-02-20KNF while here.Marco Peereboom
2007-02-20fill some macros for ahci structures. fix a spello while there.David Gwynne
2007-02-20clarify that -f is not optional; ok ottoJason McIntyre
2007-02-20KNF while in here.Marco Peereboom
2007-02-20Fix a memory leak in acx_load_radio_firmware() -- free the ucode after use.Claudio Jeker
OK mglocker@
2007-02-20~1052 lines of new PHY radio initialization code and no end in sight.Marcus Glocker
2007-02-20syncTheo de Raadt
2007-02-20Revert PAE pmap for now, until the strange bug is found. This stopsTom Cosgrove
the freezes many of us are seeing (especially on amd64 machines running OpenBSD/i386). Much testing by nick@ (as always - thanks!), hugh@, ian@, kettenis@ and Sam Smith (s (at) msmith (dot) net). Requested by, input from, and ok deraadt@ ok art@, kettenis@, miod@
2007-02-20Remove duplicate entry.Tom Cosgrove
ok miod@
2007-02-20Fix the bpf hook in etherip_input() by using the right address family andClaudio Jeker
moving the m_adj() down to prevent so that the ethernet header is preserved. This fixes tcpdump on bridged gif(4) interfaces. OK mglocker@
2007-02-20for vfsconf sysctl, do not leak kernel sensors out to userlandTheo de Raadt
ok art thib
2007-02-20for sensors do not leak kernel pointers when copying out to userland;Theo de Raadt
spotted by art, ok dlg art
2007-02-20No use checking malloc return when called with M_WAITOK.Thordur I. Bjornsson
ok dlg@, tested by jolan@
2007-02-20Remove wrong length check, which is off-by-one, andMoritz Jodeit
let snprintf(3) decide, if the whole string fittet into the buffer. ok ray@
2007-02-20Some cleanup including:Moritz Jodeit
- use sig_atomic_t signal handler flag - atoi() -> strtonum() conversion - remove vararg without matching fmt string - some more lint/gcc silencing ok millert@ ray@
2007-02-20Move AML_OBJDEBUG into ACPI_DEBUG.Marco Peereboom
KNF while in here too.
2007-02-20usage(): add -P and tweak -X; from Igor SobradoJason McIntyre
2007-02-20sort the -o options; from Igor SobradoJason McIntyre
2007-02-20sort the -o options; from Igor SobradoJason McIntyre
2007-02-20sort options and sync usage(); from Igor SobradoJason McIntyre
2007-02-20simplify synopsis and usage(); from Igor SobradoJason McIntyre
2007-02-20sort options and avoid line wrap; from Igor SobradoJason McIntyre
2007-02-20sort options; from Igor SobradoJason McIntyre
2007-02-20sort options and sync synopsis; from Igor SobradoJason McIntyre
2007-02-20sort options; from Igor SobradoJason McIntyre
2007-02-20document syslog to other programs, ok jmcHenning Brauer
2007-02-20Put ral* at pci? onto the install media. Noted by Sunnz (sunnzy (at)Tom Cosgrove
gmail (dot) com) and Stuart Henderson (stu (at) spacehopper (dot) org) on misc@. ok deraadt@
2007-02-20implement logging to other program's stdin.Henning Brauer
if the target is like "| /path/to/program", syslogd forks and execs program and sends the selected log messages to program's stdin. uses a socketpair, grows the receive buffer on the reader side and has the socket nonblocking on syslog'd side to prevent syslogd blocking. I'm using that here to feed logsurfer from ports for automated log analysis, werks beautifully. lots of input & help mpf, ok mpf djm "no objections" millert
2007-02-20set maximum packet and window sizes the same for multiplexed clientsDamien Miller
as normal connections; ok markus@
2007-02-20put -n in the right place; from Igor SobradoJason McIntyre
2007-02-20typos; from Daniel DickmanJason McIntyre
2007-02-20Remove useless -h option (if you don't know the synopsis, how do you knowChad Loder
-h?). OK deraadt
2007-02-20Back out -h doc after discussion with theoChad Loder
2007-02-20Document -h option.Chad Loder
2007-02-20use HOST_UP instead of an hard coded integerReyk Floeter
2007-02-20Change hard coded numbers to sizeof(buf). Also change someRay Lai
sizeof(buf) - 1 to sizeof(buf), since fgets takes the whole buffer size. Based on diff from Charles Longeau <chl at tuxfamily dot org> long ago. OK millert@.