summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/adw.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Since dlg@'s 2009 scsi midlayer refactoring the 'struct scsi_generic *cmd'krw2020-09-221-4/+4
* The only thing worse than trailing whitespace is leading spaces instead of tabs.krw2020-08-081-30/+30
* Move remaining scsi bus initialization info from "prototype scsi link"krw2020-07-201-5/+5
* Move the adapter related items (luns, adapter, adapter_target,krw2020-07-191-5/+6
* Access adapter softc via link->bus->sb_adapter_softc.krw2020-07-161-4/+4
* Expunge some Captain Obvious comments, tweak whitespace a bit, move a debugkrw2020-07-111-4/+1
* No need to bzero()/memset() 'struct scsibus_attach_args' variableskrw2020-06-271-2/+1
* Variables 'nowait' amd 'flags' should have died in 2008 with r1.36'skrw2020-03-101-10/+3
* Trailing whitespace.krw2020-02-181-17/+17
* *_minphys() functions that cap i/o sizes at a value larger than thekrw2020-02-151-12/+2
* Nuke softc field 'sc_adapter" and just point sc_link's at shiney newkrw2020-02-071-8/+6
* Shuffle some names around to make reading the code less headachekrw2020-01-261-2/+2
* Drivers that implement their own *minphys() don't need to call thekrw2020-01-251-2/+1
* If you use sys/param.h, you don't need sys/types.hderaadt2017-09-081-2/+1
* Partially revert previous mallocarray conversions that containdhill2017-04-111-2/+2
* Convert some malloc(9) to mallocarray(9)dhill2017-04-091-2/+2
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* remove uneeded proc.h includesjsg2014-09-141-2/+1
* ansify and de'register some prototypesdhill2012-01-111-58/+22
* Do not use NULL in integer comparisons. No functional change.miod2011-04-071-2/+2
* iopoolification. Tested on my Advansys ASP-3940U2W. Various eyeskrw2010-10-031-58/+26
* No "\n" needed at the end of panic() strings.krw2010-08-071-2/+2
* Remove all adapter-specific 'struct scsi_device's. They are never used. Firstkrw2010-06-281-12/+1
* xs->cmd[n] doesn't mean the n'th byte, because xs->cmd is a structkrw2010-06-261-6/+4
* New scsi code seems to be stable. Pluck previously identifiedkrw2010-05-201-5/+1
* BUS_DMA_ZERO instead of alloc, map, bzero.oga2010-05-191-4/+2
* Change the scsi_cmd function member of scsi_adapter from int tokrw2010-03-231-7/+8
* Set ITSDONE in scsi_done() and zap trivial instances of setting itkrw2010-01-101-4/+1
* Missing scsi_done() in some error path returning COMPLETE; ok dlg@miod2009-09-041-1/+11
* remove more unneeded Debugger() calls from dev/jasper2009-08-291-7/+2
* Extend the scsi_adapter minphys() callback to take a struct scsi_link *miod2009-02-161-4/+3
* Replace timeout_add(msecs * hz / 1000) with timeout_add_msec(msecs).grange2009-01-211-4/+4
* Stop maintaining internal queues of received scsi_xfer structures.krw2008-11-261-119/+3
* Return NO_CCB instead of TRY_AGAIN_LATER when ccb's run out.krw2008-11-241-2/+2
* SCSI_DATA_UIO is never used. Code which checks for it is either dead ormiod2008-09-121-15/+5
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-261-8/+1
* More scsi_done() at SPLBIO. Wrap more interrupt function calls whilekrw2007-11-051-1/+4
* give scsi controllers a real attach args to fill in when attaching scsibus.dlg2006-11-281-3/+7
* The first thing done when XXX_scsi_cmd() returns TRY_AGAIN_LATER iskrw2005-12-031-4/+1
* Use list and queue macros where applicable to make the code easier to read;miod2004-12-261-11/+11
* remove uvm_extern.hbrad2004-01-091-3/+1
* typos from Tom Cosgrove;jmc2003-10-211-3/+3
* First round of __P removal in sysmillert2002-03-141-21/+21
* Remove local defines for SCSI status codes and use those nowkrw2001-11-111-11/+11
* Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.miod2001-11-061-2/+2
* Switch everything to the new bus_dmamap_sync API.art2001-11-051-3/+3
* Correct some pryntf() usage: get the correct number of arguments in themiod2001-09-211-3/+3
* Prepare for transition to 5-parameter bus_dmamap_sync() by creating andkrw2001-08-261-7/+9
* Eliminate use of static functions in line with normal OpenBSDkrw2001-07-111-43/+43
* allocate memory w/ NOWAIT during autoconf time and check for NULL returnmickey2001-05-161-2/+5