summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-08-04instead of static locals, malloc/free. the goal is to reduce stack usage,Daniel Hartmeier
but statics are dangerous in case of concurrency. ok deraadt@
2005-08-04activate libstubs (setlocale + dbopen)Marc Espie
okay deraadt@
2005-08-04zap rcsid. Okay deraadt@, krw@Marc Espie
2005-08-04fix worst three kernel stack pigs in xfs by moving stack allocation ofBob Beck
xfs message structures to malloc M_TEMP. ok art@
2005-08-04no cac(4) here.Brad Smith
2005-08-04this file is now known as ses.hDavid Gwynne
ok krw@ marco@ beck@
2005-08-04HW_PHYSMEM and HW_USERMEM should be unsigned; ok tdeval marcoTheo de Raadt
2005-08-04cac(4) are 2*, 3* and 4* series controllers.Brad Smith
2005-08-04- Compaq call it "Smart Array"Jason McIntyre
- 5/6 support, not just 5 reported by alexey e. suslikov; ok mickey@
2005-08-04the generic scsi attach line already says we're an enclosure, so why didDavid Gwynne
i make it say the second line that says the same thing?
2005-08-04be nicer to the controller the ses device is attached to by doing the scsiDavid Gwynne
commands in a kernel thread, not out of softclock with a timeout. help from pascoe@ ok marco@
2005-08-04better description of where in the sysctl tree the sensors are kept, andDavid Gwynne
a description of how ses matches tweaks from jmc@
2005-08-04buf_* was taken from the framework I wrote for bgpd (also used by ntpd, ospfdHenning Brauer
and some more). Here, however, we have a blocking socket for the IPC. buf_close (writes out) and buf_read can be simplified due to that, and they can just error out on short writes/reads. ok krw moritz
2005-08-04better wording, from jfb@. Ok jmc@.Xavier Santolaria
2005-08-04add and document import -d option; ok jmc@ joris@.Xavier Santolaria
2005-08-04document TMPDIR environment variable and global -T <tmpdir> option;Xavier Santolaria
ok jfb@ jmc@.
2005-08-04match on ich7; testing by Mark.Peoples@asu.eduMichael Shalayeff
2005-08-04handle TMPDIR environment variable as well as -T <tmpdir> global option;Xavier Santolaria
Ok jfb@ joris@.
2005-08-04regenJonathan Gray
2005-08-04new axeJonathan Gray
2005-08-04Support for ICH7 audio tested by Mark.Peoples at asu.eduJonathan Gray
2005-08-04Support for SENSOR_INTEGER.Jonathan Gray
ok grange@, dlg@, henning@
2005-08-04sync command synopsis w/ man page;Xavier Santolaria
2005-08-04Make pax exit unsuccessfully on errors.Marco Pfatschbacher
Patch by fgsch@ and me. Fixes PR 4310. OK fgsch@ otto@ millert@
2005-08-04Fix handling of empty entries at the end of an address list; avoidsOtto Moerbeek
always skipping the last address. ok beck@
2005-08-04Include if_ether.h and use better usbd_devinfo_alloc argument. ok brad@Can Erkin Acar
2005-08-04...and indent;Jason McIntyre
2005-08-04remove trailing space;Jason McIntyre
2005-08-04a quick diff for marco, who wanted to see if his power supplies were on orDavid Gwynne
off. adds printing of the INDICATOR sensor type ok deraadt@
2005-08-04Add support for dell enclosures that do both SES and SAF-TE. ok dlg@Marco Peereboom
2005-08-04make the list of cards easier to read.Brad Smith
2005-08-04Add SCSI 3 define. ok dlg@Marco Peereboom
2005-08-03Move a couple of 2048+4 byte structures from the stack to the heap.Kenneth R Westerback
Create structures to eliminate 2048+4 magic number everywhere. Mostly adapted from NetBSD. tested by sturm@, beck@. ok beck@
2005-08-03enforce 10-bit width for i/o addresses when start address is assigned byFederico G. Schwindt
the driver and calcule address line mask when is not. from haya@netbsd.org. tested by several ppl.
2005-08-03Smart ARRAY comment fixes.Brad Smith
2005-08-03document cache file name,Marc Espie
more use of $@, use exec where appropriate. okay deraadt@
2005-08-03libstubs stuff, not yet active.Marc Espie
2005-08-03ciss can fit onto the large RAMDISKSTheo de Raadt
2005-08-03prevent unaligned memory access when processing LCP echo packets,Can Erkin Acar
making pppoe(4) work on sparc64. Fixes PR-4311 Reported and fix tested by David Coppa < dcoppa at gmail com >
2005-08-03avoid xrefs to self...Jason McIntyre
2005-08-03syncTheo de Raadt
2005-08-03device is not optional; spotted by jmcTheo de Raadt
2005-08-03dlg did not test what he affects; enum clashTheo de Raadt
2005-08-03missing safte/ses/scsibus piecesMartin Reindl
discussed with dlg@, ok deraadt@
2005-08-03use action_block in init instead of custom code, permits single lineNikolay Sturm
commands w/o braces in init ok henning, mpf
2005-08-03This commit was derived from a commit to FreeBSD..Brad Smith
Use stream bus space accesses to program the ID (station address) registers; otherwise, the byte order of the address is changed on big-endian machines. Though our bus_space API is different. Tested by form at pdp-11 dotorg dot ru and robert@ ok mickey@ robert@
2005-08-03clarify device vs drive; marco okTheo de Raadt
2005-08-03Fix usage.Marco Peereboom
2005-08-03report the state of the power supplies. the value shows if the psu is onDavid Gwynne
or off, but sysctl doesnt know how to display it (yet). requested by marco@
2005-08-03be more careful when using struct ipsec_auth, might be NULL now.Hans-Joerg Hoexer