summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2007-05-29sprinkle some SMALL_KERNEL to permit bio/softraid to run on boot mediaTodd T. Fries
ok marco@ then suggested deraadt@
2007-05-29sprinkle some SMALL_KERNEL so that it can run on boot media.Marco Peereboom
ok todd
2007-05-29It helps to commit removals from the tree that has the files cvs removedClaudio Jeker
instead of one where they where just empty. Figured out by art@
2007-05-29Make stimeout a debug print. It has no value for users to see it.Marco Peereboom
prompted by deraadt ok dlg
2007-05-29set UDCF_DEBUG to 1 when USB_DEBUG is defined.Marc Balmer
ok mjc
2007-05-29Add shutdownhook for all disciplinesMarco Peereboom
2007-05-29Stray reference in a comment to the dear departed wt.Kenneth R Westerback
2007-05-29Move tokenring support to the attic where it can join the cards that whereClaudio Jeker
decomissioned aeon ago. We will not miss it at all. OK dlg@ henning@ and a lot of cheers by other in the room
2007-05-29Beef up malo_hexdump() to emulate hexdump -C output. Helps to see hiddenClaudio Jeker
agendas in buffers that stupidly encode numbers as strings so that we need to parse them in the kernel as seen on che(4). OK mglocker@
2007-05-29Fix bus_dmamap_sync size argument.Alexander Yurchenko
2007-05-29Kill stale commentMarco Peereboom
2007-05-29Fix race in sync code.Marco Peereboom
2007-05-29Re-add sync.Marco Peereboom
ok tedu
2007-05-29Correct fix for the last backout use strlcpy() to fill dv_xname. OK beck@Claudio Jeker
2007-05-29back out last commit. It helps to compile before commiting. OK beck@ art@Claudio Jeker
2007-05-29work around really bad softc abuse by marco; proper fixes for this willTheo de Raadt
be part of a later rototilling
2007-05-29Sparc64 does not like 32 bit pointers. Bad me.Marco Peereboom
help tedu ok todd
2007-05-29Kill some #if define(__OtherBSD__). OK dlg@Claudio Jeker
2007-05-28fix C++ style commentChris Kuethe
from brad, ok deraadt
2007-05-28Gently nudge up the interrupt coalescing timeout to 128 microseconds. ThisChris Kuethe
gives the firmware time to do its job. Makes my fxps go from 12000int/sec while moving 100Mbps to 3000int/sec ok beck claudio
2007-05-28Delete wt code files. The end of wt(4).Kenneth R Westerback
2007-05-28avoid bypassing sys/queue.h in many places in the kernel.Pierre-Yves Ritschard
many assumptions were made about the way the various list types are implemented. lots of suggestions and help from otto and miod. ok otto@
2007-05-28Make disk assembly smarter and add two qualifiers to it:Marco Peereboom
1) noautoassemble; when set the softraid volume will not be assembled during autoconf. 2) force; when set it will overwrite metadata on disk While writing this I ran into 3 bugs that were fixed along the way 1) bcopy in sr_read_meta was copying data to the wrong pointer 2) in sr_read_meta the wrong metadata was coppied into the chunk 3) sr_free_discipline was freing a pointer that wasn't malloc'd ok dlg
2007-05-28fix build when ACPI_DEBUG is definedRobert Nagy
2007-05-28make it compile on i386Reyk Floeter
2007-05-28syncTom Cosgrove
2007-05-28Enable interrupt holdoff on DP83816 chips. This significantly improvesChris Kuethe
performance of devices such as the soekris under load.
2007-05-28Vendor name shouldn't be in product string; this one was mis-speltTom Cosgrove
anyway. ok jsg@
2007-05-28Bump timeout.Alexander Yurchenko
2007-05-28Decrease max number of commands to 128.Alexander Yurchenko
2007-05-28Start adding copperhead chipset support. Not tested at all.Alexander Yurchenko
2007-05-28Add more MII glue. Still not working but I want to get this into the tree.Claudio Jeker
2007-05-28unbreak, and remove the "goto bad's".Felix Kronlage
discussed with and ok uwe@, jsg@, grange@
2007-05-28Art left a trailing quote as an easter egg in this file five years ago. CanMiod Vallat
I have a cookie?
2007-05-28Fix timeout loop in ips_poll().Alexander Yurchenko
2007-05-28Add a bunch of new firmware commands to configure MAC/PHY/RF, and do so.Marcus Glocker
Simplify command interface.
2007-05-28Better debug printf.Alexander Yurchenko
2007-05-28Initial bits of if_media and mii support.Claudio Jeker
2007-05-28use memcpy when copying to/from the fifos, apparently gcc can do a betterDavid Gwynne
job of optimising it.
2007-05-28Provide a separate DMA-able command frame buffer for each CCB to preventAlexander Yurchenko
a race when the new command is posting while the target DMA engine is still reading the previous command. Now I can finaly remove the openings=1 hack. Many thanks to dlg@ for analizing the problem.
2007-05-28Sprincle some more scsi_done().Alexander Yurchenko
2007-05-28Eliminate unsightly blank lines in dmesg.Kenneth R Westerback
ok marco@
2007-05-28Release CCB before calling scsi_done(). Thanks dlg@ for the tip.Alexander Yurchenko
2007-05-28Remove the Archive/Wangtek cartidge tape driver, wt(4). All tapes areKenneth R Westerback
st(4). ok tom@ deraadt@ jason@
2007-05-27Add basic error detection.Alexander Yurchenko
2007-05-27Better debug printf.Alexander Yurchenko
2007-05-27A completely rewritten ips driver. Still work in progress but alreadyAlexander Yurchenko
better than before. I've started it right after h2k7 in the Lisbon airport but could commit only at c2k7.
2007-05-27Values which are written to a 16-bit register shall be uint16_t not int.Marcus Glocker
Spacing.
2007-05-27Make it work on big endian archs, too.Marcus Glocker
2007-05-27Some other missed bits.Jonathan Gray