summaryrefslogtreecommitdiffstats
path: root/sys/dev/pv/hvs.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Ensure resid is correctly set in the INQUIRY case.krw2020-10-151-0/+1
* Since dlg@'s 2009 scsi midlayer refactoring the 'struct scsi_generic *cmd'krw2020-09-221-3/+3
* Rename SID_INQUIRY_HDR (a.k.a. 5) to more explicit SID_SCSI2_HDRLEN and use itkrw2020-09-051-2/+3
* Replace '.response_format = 2' with '.response_format = SID_SCSI2_RESPONSE'.krw2020-09-031-1/+1
* Nuke unused struct scsi_link members of adapter softc's where thekrw2020-07-221-1/+0
* Move remaining scsi bus initialization info from "prototype scsi link"krw2020-07-201-4/+4
* Move the adapter related items (luns, adapter, adapter_target,krw2020-07-191-5/+5
* Access adapter softc via link->bus->sb_adapter_softc.krw2020-07-161-3/+3
* Expunge some Captain Obvious comments, tweak whitespace a bit, move a debugkrw2020-07-111-0/+1
* No need to bzero()/memset() 'struct scsibus_attach_args' variableskrw2020-06-271-1/+0
* Use SDEV_NO_ADAPTER_TARGET instead of the value that is beingkrw2020-06-241-1/+1
* Bring a few stragglers into line with the idiom used by the other 40+krw2020-02-121-5/+5
* Nuke unnecessary abstraction 'scsi_minphys()' which just callskrw2020-02-051-1/+1
* Shuffle some names around to make reading the code less headachekrw2020-01-261-1/+1
* Adopt the SCSI versioning #define's from FreeBSD. Eliminate thekrw2019-09-011-3/+3
* Don't use misleadingly named SCSISPC() which returns SCSI version notkrw2019-08-301-1/+1
* Correct the upper bound for the command size before the passthroughmikeb2017-08-101-1/+1
* Buffer size for the SCSI vendor string should be 8 char longmikeb2017-08-101-1/+1
* Add a comment explaining why pciide(4) must skip attaching disksmikeb2017-07-131-1/+7
* Prefer paravirtualized interface for IDE disks as wellmikeb2017-07-121-1/+5
* Avoid testing an uninitialised variable in the SCSI_BUSY/SCSI_QUEUE_FULLjsg2017-06-271-1/+1
* Minor cleanup; when polling delay before calling the interrupt handlermikeb2017-06-261-7/+12
* Request deferred interrupt processingmikeb2017-06-231-0/+5
* Don't confuse SCSI command status and transfer error code.mikeb2017-06-211-23/+33
* Include the request id in the I/O debug outputmikeb2017-06-211-4/+4
* Provide storage for the response message in each CCBmikeb2017-06-151-36/+26
* Remove the structure definition for an old (pre Win8) I/O request typemikeb2017-06-151-20/+13
* Put back copying of the response message into the polling callbackmikeb2017-06-151-8/+14
* Correct the number of targets vs number of LUNsmikeb2017-06-151-11/+10
* Borrow some of dlg's smarts to make this look like a real SCSI drivermikeb2017-06-141-113/+155
* Special handling for request 0 clashes with CCB 0mikeb2017-06-141-24/+19
* Increase the maximum amount of requests and do some cleanupmikeb2017-06-141-103/+8
* Hyper-V storage drivermikeb2017-06-141-0/+988