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