Age | Commit message (Expand) | Author |
2022-04-06 | Avoid traversing SLIST twice to remove a link. | Kenneth R Westerback |
2022-04-06 | Recognize LUN 0 device if SID_QUAL_LU_OFFLINE and T_NODEVICE are | Kenneth R Westerback |
2022-04-02 | Add a paranoia/future proofing check for link->pool == NULL to | Kenneth R Westerback |
2022-04-02 | Bring back r1.247, using scsi_detach_link() to release | Kenneth R Westerback |
2022-03-28 | Only SLIST_REMOVE() a link when the link is on the list. | Kenneth R Westerback |
2022-03-24 | Revert previous. Breaks probing native IDE devices. | Kenneth R Westerback |
2022-03-23 | When configuring a scsi_link that has passed dev_probe() but | Kenneth R Westerback |
2022-03-22 | Nuke increasingly pointless comment. Shorten a line and | Kenneth R Westerback |
2022-03-21 | Whitespace tweaks. | Kenneth R Westerback |
2022-03-21 | No point in calling scsi_link_shutdown() if link->pool is NULL. | Kenneth R Westerback |
2022-03-03 | r1.241 was the culprit. Unrevert r1.240. | Kenneth R Westerback |
2022-03-03 | Revert r1.241 and r1.240 which may have broken softraid. | Kenneth R Westerback |
2022-03-02 | Abstract the memory allocation, scsibus_softc data copying and | Kenneth R Westerback |
2022-03-02 | Move the code obtaining the LUN 0 scsi_link used to determine the | Kenneth R Westerback |
2022-02-28 | Shuffle some SCSIDEBUG code to simplify code, tersify the | Kenneth R Westerback |
2021-10-24 | Constify struct cfattach. | Martin Pieuchot |
2020-11-19 | TL;DR -- don't configure devices that return insufficient INQUIRY data. | Kenneth R Westerback |
2020-08-18 | Try to avoid a theoretical infinite loop while detaching all the scsi_link's on | Kenneth R Westerback |
2020-08-14 | Redistribute and tweak the scsi_[attach|probe|detach]_[bus|target|lun]() code to | Kenneth R Westerback |
2020-08-11 | Explicitly #include <scsi/scsi_debug.h> rather than assuming scsiconf.h will do | Kenneth R Westerback |
2020-08-10 | Minor code shuffle to get all *_activate(), *_probe() and *_detach() functions | Kenneth R Westerback |
2020-08-09 | More code shuffling. Fix a rename missed in previous. | Kenneth R Westerback |
2020-08-09 | Shuffle functions and declarations around to more logical grouping. Nuke some | Kenneth R Westerback |
2020-08-08 | scsi_link's are born knowing their bus. Use that instead of passing extra | 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 scsibus_softc info (luns, adapter, adapter_target, | Kenneth R Westerback |
2020-07-16 | Beef up struct scsibus_softc to hold the information needed to | Kenneth R Westerback |
2020-07-05 | Nuke struct scsi_link's "scsibus" member. The two drivers using it | Kenneth R Westerback |
2020-06-30 | Nuke unneeded 'sa_inqbuf' member of struct scsi_attach_args. It always | Kenneth R Westerback |
2020-02-05 | Nuke unnecessary abstraction 'scsi_minphys()' which just calls | Kenneth R Westerback |
2019-12-08 | Various cleanup tweaks. 'return' is not a function. KNF. Whitespace, | 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-23 | Consistently use SET() to set bits. | Kenneth R Westerback |
2019-11-09 | Make sure that SDEV_NOSYNC abd SDEV_NOWIDE quirks are not | Kenneth R Westerback |
2019-09-27 | Add/tweak #endif comments to make spelunking via grep more rewarding. | Kenneth R Westerback |
2019-09-27 | Shuffle and consolidate SCSIDEBUG declarations into fewer sections in | Kenneth R Westerback |
2019-09-24 | Use consistent names for unused flags/quirks when printing same under | Kenneth R Westerback |
2019-09-23 | When printing the scsi_link info under SCSIDEBUG show state, luns, | Kenneth R Westerback |
2019-09-16 | Update list of device types with combination of FreeBSD and | Kenneth R Westerback |
2019-09-03 | Shorten normal dmesg attach verbiage and expand SCSIDEBUG verbiage. | Kenneth R Westerback |
2019-09-01 | Adopt the SCSI versioning #define's from FreeBSD. Eliminate the | Kenneth R Westerback |
2019-08-30 | Rectify error made in 2006. SPC-2 == SCSI-3, not SCSI-2!! | Kenneth R Westerback |
2019-08-28 | Introduce SCSI0(), SCSI2() and SCSI3() defines to clarify (some) uses | Kenneth R Westerback |
2019-08-27 | Refactor probing logic to mirror detach logic. i.e. put smarts in | Kenneth R Westerback |
2019-08-24 | Simply logic of detaching things. scsi_detach_bus() folded into | Kenneth R Westerback |
2019-08-22 | T10/BSR INCITS 503 (SPC-5) is apparently a thing. Update | Kenneth R Westerback |
2019-08-20 | scsi_probe_bus() always returns 0. Nobody but scsi_probe() even | Kenneth R Westerback |
2019-08-18 | Every "goto bad" in scsi_probedev() deserves a SC_DEBUG(). | Kenneth R Westerback |