Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-05-31 | erroneously EINVAL is always reported where the function | David Gwynne | |
actually produces the real errno for the problem. currently for kernel memory allocation failures bioctl would return EINVAL that makes no sense. another diff from mickey | |||
2007-05-31 | if poking the controller fails for whatever reason the drives' | David Gwynne | |
sensor status will still be marked as ok (or etc..) thus erroneously reporting value as valid. this nice diff was from mickey | |||
2007-05-31 | remove the scsi task thread, and replace it with the system workq. | David Gwynne | |
"just :wq and do it" tedu@ | |||
2007-05-29 | sprinkle some SMALL_KERNEL to permit bio/softraid to run on boot media | Todd T. Fries | |
ok marco@ then suggested deraadt@ | |||
2007-05-29 | It helps to commit removals from the tree that has the files cvs removed | Claudio Jeker | |
instead of one where they where just empty. Figured out by art@ | |||
2007-05-29 | Make stimeout a debug print. It has no value for users to see it. | Marco Peereboom | |
prompted by deraadt ok dlg | |||
2007-05-29 | Move tokenring support to the attic where it can join the cards that where | Claudio 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-29 | Beef up malo_hexdump() to emulate hexdump -C output. Helps to see hidden | Claudio 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-28 | Gently nudge up the interrupt coalescing timeout to 128 microseconds. This | Chris 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-26 | fix a copy/paste typo from my previous commit: s/dhf/dhg/g | Constantine A. Murenin | |
2007-05-26 | 'recevied' -> 'received' in a displayed message. From Diego Casati. | Kenneth R Westerback | |
2007-05-25 | Bump firmware package version; Better naming of the malo firmware files. | Marcus Glocker | |
discussed with, and OK claudio@ | |||
2007-05-25 | add support for W83627DHG; ok kettenis | Constantine A. Murenin | |
2007-05-25 | fix a typo in RFACT of 3.3Vcc of w83627ehf; ok kettenis | Constantine A. Murenin | |
2007-05-23 | instead of trying to keep up w/ changing url, simply document | Jason McIntyre | |
the name of the chip document; fixes pr 5489, from Diego Casati ok jsg | |||
2007-05-23 | %z in printf(9) is not the same as %z in printf(3). Change to %lu | Ray Lai | |
and cast arg to ulong. OK jsg@ and krw@. | |||
2007-05-22 | Pass string to printf instead of struct that contains string. | Ray Lai | |
OK tedu@ and miod@. | |||
2007-05-22 | Remove broken URLs. | Jonathan Gray | |
Fixes PRs 5482, 5483, 5484, 5486, 5487, 5488 Filed by casati@nortel.com | |||
2007-05-21 | Switch pcfiic to rwlock. | Jonathan Gray | |
ok dlg@ kettenis@ | |||
2007-05-19 | My 3c905C needs a brief pause after reset for PIO too, at least on hppa. | Mark Kettenis | |
tested by thib@, ok deraadt@ | |||
2007-05-19 | command ids for mailbox commands | David Gwynne | |
2007-05-19 | stash the dma tag in sli_softc | David Gwynne | |
2007-05-19 | hook up interrupts, but a little different to what i usually do. this maps | David Gwynne | |
the interrupt before the bus independant code is attached, and establishes the interrupt after that. | |||
2007-05-18 | spelling in comment fix | David Gwynne | |
2007-05-16 | add definitions for the bits in the "register" bus_space region. | David Gwynne | |
2007-05-16 | map the pci BARs that we're interested in. this gives us access to the | David Gwynne | |
chips registers and io interface, but whats actually in them is still a mystery to me. | |||
2007-05-15 | start work on a driver for emulex fibre channel controllers. | David Gwynne | |
it is split up into a bus independant chunk (dev/ic/sli*) and the attach glue (dev/pci/sli_pci.c) cos there are sbus varaints of this chip which i hope to get my hands on one day. this does nothing except attach to the LP8000 controllers. | |||
2007-05-14 | delete unused code; ok krw | Theo de Raadt | |
2007-05-09 | Remove an obsolete comment which guesses about a register write an never | Marcus Glocker | |
was used anyway. OK claudio@ | |||
2007-05-09 | diable -> disable | Miod Vallat | |
2007-05-09 | remove the internal wrapper functions for ieee80211_mhz2ieee and | Reyk Floeter | |
ieee80211_ieee2mhz which also removes some dead code. figured out by deraadt@ | |||
2007-05-08 | backout while the amd64 puc situation is rethought | Theo de Raadt | |
2007-05-08 | non-static inline functions waste space | Theo de Raadt | |
2007-05-08 | move com_activate() to where it belongs | Theo de Raadt | |
2007-05-08 | put more foo_detach() routines where they are used | Theo de Raadt | |
2007-05-08 | rl_detach() is only used for cardbus case | Theo de Raadt | |
2007-05-08 | wdcrestart() is never used | Theo de Raadt | |
2007-05-08 | atapi_print() is never used | Theo de Raadt | |
2007-05-08 | ami chips have no mechanism to take commands off them once we've submitted | David Gwynne | |
them. this means that we cant reliably complete an io before the chip says we can because it can possibly complete later and overwrite memory it no longer owns, or write garbage to disk. so this diff forces the timeout on a scsi io to be as long as the chip should ever take, which is sixty seconds. after much discussion with marco we also decided to add a bit more so the time spent in the software runq wouldnt affect the ios lifetime too much. instead of completing ios out of the timeout, this simply warns the operator to check the state of the volumes if things are starting to slow down. ok marco@ | |||
2007-05-08 | turn off SIOP_STATS; ok krw | Theo de Raadt | |
2007-05-08 | dc_detach() is only used by cardbus code, so move it there; ok jsg | Theo de Raadt | |
2007-05-07 | floating unused variable (except in debug case) | Theo de Raadt | |
2007-05-05 | malo_hexdump() is only used by code under MALO_DEBUG, so ifdef it | Jonathan Gray | |
ok mglocker@ claudio@ | |||
2007-05-05 | move xl_detach() -- which is only used by cardbus -- to the cardbus code. | Theo de Raadt | |
ok jsg | |||
2007-05-05 | Properly ifdef debug bits to save a bit of space. | Jonathan Gray | |
ok reyk@ | |||
2007-05-03 | Add monitor mode. Add fast channel switching. Do some simplifications | Marcus Glocker | |
while there. Comments, tested, and OK claudio@ | |||
2007-05-03 | Enable fast channel switching in monitor mode, which makes apps like | Marcus Glocker | |
kismet happy. Previously system got very slow because at every channel switch an ENETRESET was issued. Reported and diff by Steffen Schuetz <st.sch@gmx.net>. Closes PR 5452. OK claudio@ | |||
2007-05-02 | Eliminate unused inline functions and replace ahc_lock() which | Kenneth R Westerback | |
resolves to s = splbio() and ahc_unlock() which resolves to splx(s) with splbio/splx calls. ok marco@ dlg@ | |||
2007-04-28 | missing splbio/splx pair (which splasserted me per-device probe) in | Theo de Raadt | |
polling mode code; ok dlg marco krw | |||
2007-04-28 | remove abstraction around splbio/splx; they just confuse things; ok dlg ↵ | Theo de Raadt | |
marco krw |