| Commit message (Expand) | Author | Age | Files | Lines |
* | Since dlg@'s 2009 scsi midlayer refactoring the 'struct scsi_generic *cmd' |  krw | 2020-09-22 | 1 | -2/+2 |
* | Turning on various scsi drivers' *DEBUG options reveals that this has |  krw | 2020-07-24 | 1 | -3/+3 |
* | Move remaining scsi bus initialization info from "prototype scsi link" |  krw | 2020-07-20 | 1 | -5/+5 |
* | Move the adapter related items (luns, adapter, adapter_target, |  krw | 2020-07-19 | 1 | -6/+6 |
* | Access adapter softc via link->bus->sb_adapter_softc. |  krw | 2020-07-16 | 1 | -2/+2 |
* | Expunge some Captain Obvious comments, tweak whitespace a bit, move a debug |  krw | 2020-07-11 | 1 | -1/+3 |
* | No need to bzero()/memset() 'struct scsibus_attach_args' variables |  krw | 2020-06-27 | 1 | -2/+1 |
* | Use SDEV_NO_ADAPTER_TARGET instead of the value that is being |  krw | 2020-06-24 | 1 | -2/+2 |
* | Nuke *_minphys() functions that either simply apply MAXPHYS or do |  krw | 2020-02-13 | 1 | -13/+2 |
* | Shuffle some names around to make reading the code less headache |  krw | 2020-01-26 | 1 | -4/+4 |
* | Drivers that implement their own *minphys() don't need to call the |  krw | 2020-01-25 | 1 | -2/+1 |
* | ciss(4): tsleep(9) -> tsleep_nsec(9) |  cheloha | 2020-01-23 | 1 | -16/+16 |
* | ciss(4): ciss_cmd: split polling loop into two loops |  cheloha | 2020-01-23 | 1 | -8/+15 |
* | ciss(4): de-indent polling logic |  cheloha | 2020-01-20 | 1 | -70/+72 |
* | change some types in bio from u_quad_t to uint64_t, and fix casts in |  dlg | 2016-08-14 | 1 | -2/+2 |
* | sizes for free(); ok sthen |  deraadt | 2015-09-09 | 1 | -2/+3 |
* | add missing CISS_UNLOCK_SCRATCH/splx calls |  jsg | 2015-05-03 | 1 | -3/+7 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |
* | remove uneeded proc.h includes |  jsg | 2014-09-14 | 1 | -2/+1 |
* | Some reallocarray() use; review Jean-Philippe Ouellet, patrick keshishian |  deraadt | 2014-07-13 | 1 | -3/+3 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -2/+2 |
* | Enforce ca_activate tree-walks over the entire heirarchy for all events, |  deraadt | 2013-05-30 | 1 | -8/+1 |
* | Death to inappropriate whitespace. First one pointed out by Brad. |  krw | 2011-11-10 | 1 | -4/+4 |
* | Backout a bunch of my SCSI commits from c2k11. At least one of these |  matthew | 2011-07-17 | 1 | -3/+3 |
* | First batch of converting SCSI HBAs from setting saa_targets and |  matthew | 2011-07-08 | 1 | -3/+3 |
* | - use nitems() no binary change on amd64 |  jasper | 2011-04-05 | 1 | -2/+2 |
* | Use SSD_ERRCODE_CURRENT instead of magic 0x70. |  krw | 2010-09-20 | 1 | -3/+5 |
* | bus_dmamap_sync was using xs->flags to determine which direction |  dlg | 2010-09-20 | 1 | -4/+4 |
* | set each disks openings to the maximum number the controller can handle. |  dlg | 2010-07-07 | 1 | -2/+2 |
* | Make the sensor setup loop less awkward by moving the call to |  matthew | 2010-07-02 | 1 | -3/+3 |
* | compile when SMALL_KERNEL is set |  deraadt | 2010-07-01 | 1 | -2/+3 |
* | Change scsibus(4)'s scsi_link array to an SLIST to save memory on |  matthew | 2010-07-01 | 1 | -5/+5 |
* | Remove all adapter-specific 'struct scsi_device's. They are never used. First |  krw | 2010-06-28 | 1 | -6/+1 |
* | If you put CISS_LOCK()/CISS_UNLOCK() around a switch statement, you |  krw | 2010-06-26 | 1 | -3/+5 |
* | dont pass the dev_t from the scsi device drivers into the midlayer for |  dlg | 2010-06-15 | 1 | -5/+3 |
* | get rid of the kthread. it is unused and just bloats the kernel. |  dlg | 2010-06-03 | 1 | -30/+1 |
* | replace TAILQs with SLISTs for managing the ccb free list. theyre smaller. |  dlg | 2010-06-03 | 1 | -6/+7 |
* | useless abstraction is, by definition, useless. |  dlg | 2010-06-03 | 1 | -2/+2 |
* | convert ciss(4) over to using iopools. this is fairly easy after the recent |  dlg | 2010-06-02 | 1 | -37/+35 |
* | its pretty obvious that ciss_cmd should be called with splbio being held, |  dlg | 2010-06-02 | 1 | -6/+38 |
* | call scsi_done before put_ccb, rather than have put_ccb call scsi_done |  dlg | 2010-06-02 | 1 | -8/+7 |
* | push the "locking" in ciss_scsi_cmd down. we dont need splbio to call |  dlg | 2010-06-02 | 1 | -5/+2 |
* | protect the ccb free queue with its own mutex |  dlg | 2010-06-02 | 1 | -2/+9 |
* | get rid of useless ccb queues. when the ccb is on the chip, we mark its |  dlg | 2010-06-02 | 1 | -5/+1 |
* | get rid of the code for the passthru bus support. it was never enabled and |  dlg | 2010-06-02 | 1 | -81/+1 |
* | interrupt handlers are run at their IPL, so there's no need to go splbio |  dlg | 2010-06-02 | 1 | -6/+1 |
* | do not immediately panic if we find a non-increasing heartbeat counter but |  halex | 2010-05-31 | 1 | -4/+17 |
* | BUS_DMA_ZERO instead of alloc, map, bzero. |  oga | 2010-05-19 | 1 | -5/+3 |
* | Change the scsi_cmd function member of scsi_adapter from int to |  krw | 2010-03-23 | 1 | -23/+18 |
* | Zap all setting of ITSDONE in drivers that don't look at it. Nobody |  krw | 2010-01-09 | 1 | -2/+1 |