summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-08-04match on ich7; testing by Mark.Peoples@asu.eduMichael Shalayeff
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-04Include if_ether.h and use better usbd_devinfo_alloc argument. ok brad@Can Erkin Acar
2005-08-04Add support for dell enclosures that do both SES and SAF-TE. ok dlg@Marco Peereboom
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-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-03missing safte/ses/scsibus piecesMartin Reindl
discussed with dlg@, ok deraadt@
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-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-03take advantage of the new ability of the sensors framework to report theDavid Gwynne
status ok marco@ beck@ henning@ deraadt@
2005-08-03enable ciss; deraadt@ okMichael Shalayeff
2005-08-03extend the sensors framework to allow it to report the state of theDavid Gwynne
sensor, not just its value. ok henning@ marco@ deraadt@ beck@ fixes and tweaks grange@
2005-08-03enable safte and ses on all archs that appear to have real scsi bussesDavid Gwynne
ok deraadt@ beck@ marco@
2005-08-03Do not send "deletion" messages for states created by other pfsync peers whenChristopher Pascoe
they timeout. Any other hosts that have also learnt these states will already know that they are due to time out. ok henning
2005-08-03Eliminate another case where pool routines are called without process context.Christopher Pascoe
Instead of purging immediately, let the state be purged at the purge interval. ok henning
2005-08-03use flag macro instead of constantChristopher Pascoe
2005-08-03Link with -lgcc like hp300 to pull in the gcc functions that zlib needs.Todd C. Miller
OK deraadt@
2005-08-03if fw provides no max sgl len -- suggest some of our ownMichael Shalayeff
2005-08-03in config loop: make delay longer and less iterations to make it run in a ↵Michael Shalayeff
better second
2005-08-02apparently reading idb sometimes produces better results if prependMichael Shalayeff
w/ a read from the next register (hell knows what's in it). this whole driver work is done w/ help of genua.de and also a card donated earlier.
2005-08-02int mask is matched on the subsys ids not prod idsMichael Shalayeff
2005-08-02kill 2kB stack offender in cardbus_attach_card.Christopher Pascoe
ok deraadt fgsch
2005-08-02Save floating point context on signals, same diff as macppcDale Rahn
2005-08-02Save floating point context on signals, looked at miod@ is it in yet? deraadt@Dale Rahn
2005-08-02Reduce stack usage.Mark Kettenis
2005-08-02pass the AF in network byte order to bpfMarkus Friedl
2005-08-02reduce stack usageReyk Floeter
spotted out by jsg@
2005-08-02Instead of copying a table structure so we can mask off a bit beforeChristopher Pascoe
"validating" it, pass the bits to be ignored down to the validating function in its allowedflags argument. Saves a 1kB+ stack allocation. ok henning@
2005-08-02unbreak ubt(4)Reyk Floeter
ok pascoe@
2005-08-02change the TCP reass queue from LIST to TAILQ;Markus Friedl
ok henning claudio fgsch krw
2005-08-02use arc4random for random packet padding (largely acedemic because it isDamien Miller
deprecated anyway); ok hshoexer@
2005-08-02syncPeter Valchev
2005-08-02an alternative Cicada OUI (for CS8201B PHY) spotted in a VIA VT6122Peter Valchev
from NetBSD PR 29705 (Tomokazu HARADA), pointed out by jsg
2005-08-02read the rpm of the fansDavid Gwynne
2005-08-02Marvell 88E1111 from Dave Huang in NetBSD PR 30556.Jonathan Gray
ok brad@
2005-08-02regenJonathan Gray
2005-08-02Marvell 88E1111 from Dave Huang in NetBSD PR 30556.Jonathan Gray
ok brad@
2005-08-01make compile againMichael Shalayeff
2005-08-01Increment version so we can distinguish this in the future.Tobias Weingartner
2005-08-01a new scsi enclosure services driver. this and safte replace the old sesDavid Gwynne
driver. rather than relying on its own set of tools, ses reports the enclosure status via the hw.sensors sysctl tree. so far only temperature is reported ok marco@ deraadt@ krw@
2005-08-01add another fxp.Brad Smith
From NetBSD ok deraadt@
2005-08-01regenBrad Smith
2005-08-01add some Intel PCI ids.Brad Smith
ok deraadt@
2005-08-01Return 0 as the block size when READ_CAPACITY fails in scsi_size().Kenneth R Westerback
Prevents garbage being used as ssblksize in sd_get_parms(). Perhaps another nail in the coffin for PR4313.