Age | Commit message (Expand) | Author |
2020-06-30 | Nuke unneeded 'sa_inqbuf' member of struct scsi_attach_args. It always | Kenneth R Westerback |
2020-03-10 | Access 4-byte address field with _4btol() not _8btol(), fixing | Kenneth R Westerback |
2020-02-20 | Relax the grip the dead hand of QBUS (a.k.a. MAXPHYS) has on the | Kenneth R Westerback |
2020-02-05 | Nuke unnecessary abstraction 'scsi_minphys()' which just calls | Kenneth R Westerback |
2020-01-26 | Shuffle some names around to make reading the code less headache | Kenneth R Westerback |
2020-01-25 | Ensure scsi_minphys() is always called on the physio() path. | Kenneth R Westerback |
2019-12-08 | Various cleanup tweaks. 'return' is not a function. KNF. Whitespace, | Kenneth R Westerback |
2019-12-05 | Shrink scsi_mode_do_sense() parameter list by eliminating the three | Kenneth R Westerback |
2019-12-03 | Check for expected mode sense page code as well as expected mode page length ... | Kenneth R Westerback |
2019-11-29 | DISK_PGCODE() #define includes a check for NULL, so no need to | Kenneth R Westerback |
2019-11-28 | Always pass a pointer to 'big' to scsi_do_mode_sense(). | Kenneth R Westerback |
2019-11-26 | Reinitialize 'err' to ensure we are not checking a stale value. | Kenneth R Westerback |
2019-11-25 | Move struct scsi_read_cap_data and struct scsi_read_cap_data_16 to | Kenneth R Westerback |
2019-11-23 | Consistently use ISSET() to check for set flags. | Kenneth R Westerback |
2019-11-23 | Consistently use !ISSET() to check for unset flags. | Kenneth R Westerback |
2019-11-09 | Shuffle sd_get_parms() logic to ensure we only update sc->params with | Kenneth R Westerback |
2019-11-09 | Fix SCSIDEBUG display of VPD inquiry data. | Kenneth R Westerback |
2019-11-09 | Fix SCSIDEBUG compile. Missed a %lx -> %x. | Kenneth R Westerback |
2019-11-08 | The u_long fields in struct disk_parms (secsize, heads, cyls, sectors) | Kenneth R Westerback |
2019-11-07 | sd_size() is a wrapper around sd_read_cap_10() and sd_read_cap_16() so | Kenneth R Westerback |
2019-10-23 | There used to be three possible return values from sd_get_parms(), but | Kenneth R Westerback |
2019-10-22 | No need to always pass the same thing to sd_get_parms(). One less | Kenneth R Westerback |
2019-10-19 | Use !ISSET() for unset flag checks. | Kenneth R Westerback |
2019-10-19 | Use ISSET() for the easier flag checks. | Kenneth R Westerback |
2019-10-19 | Fix typo in previous, link->flag is link->flags. | Kenneth R Westerback |
2019-10-19 | Resolve mix of '&=' and CLR() usage in favour of CLR(). | Kenneth R Westerback |
2019-10-19 | Resolve mix of '|=' and SET() usage in favour of SET(). | Kenneth R Westerback |
2019-09-29 | Introduce SC_DEBUG_SENSE() and simplify code by eliminating a bunch | Kenneth R Westerback |
2019-09-29 | Tweak some whitespace to make autoindenter happy. Use consistent naming idiom... | Kenneth R Westerback |
2019-09-27 | Add/tweak #endif comments to make spelunking via grep more rewarding. | Kenneth R Westerback |
2019-09-20 | Print inquiry and read capacity (10 and 16) data under SCSIDEBUG. | Kenneth R Westerback |
2019-09-15 | With the recent fixes to SCSI version detection we reproduced a | Kenneth R Westerback |
2019-09-14 | Typo in comment. scsi_size() is actually sd_size(). | Kenneth R Westerback |
2019-09-01 | Adopt the SCSI versioning #define's from FreeBSD. Eliminate the | Kenneth R Westerback |
2019-08-28 | Introduce SCSI0(), SCSI2() and SCSI3() defines to clarify (some) uses | Kenneth R Westerback |
2019-01-20 | No leading space(s) before labels. | Kenneth R Westerback |
2019-01-20 | When retiring a SCSI request, sometimes the buf's b_error value is | Kenneth R Westerback |
2017-12-30 | Don't pull in <sys/file.h> just to get fcntl.h | Philip Guenther |
2017-09-08 | If you use sys/param.h, you don't need sys/types.h | Theo de Raadt |
2017-05-29 | sd: flush cache when closing writable FD | Stefan Fritsch |
2017-05-29 | Add an ioctl to tell storage devices to flush their internal caches | Stefan Fritsch |
2017-05-29 | To prevent anyone else from stumbling on this (now) archaic bit of | Kenneth R Westerback |
2017-05-04 | Also pass the blk offset to disk_unbusy(), so that it can pass it to | Theo de Raadt |
2016-03-19 | Do not run into sdgetdisklabel() when scsi disk is dying. Add | Alexander Bluhm |
2016-03-18 | After sleeping and before accessing sc_link, check that scsi disk | Alexander Bluhm |
2016-03-17 | Do not access the scsi link structure in sdclose() if the disk | Alexander Bluhm |
2016-03-16 | Add SDF_DYING checks to more functions in scsi disk, to prevent an | Alexander Bluhm |
2016-03-12 | Standardize on calling local scsi_link variables 'link' instead of | Kenneth R Westerback |
2016-03-12 | When unplugging an USB umass stick, the kernel could panic because | Alexander Bluhm |
2016-02-03 | Do not access the scsi link of the disk at the beginning of sdopen() | Alexander Bluhm |