Age | Commit message (Expand) | Author |
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 |
2019-08-18 | Rename 'link' to 'link0' as it refers to target 0 only. | Kenneth R Westerback |
2019-08-18 | When activating or detaching a target don't search the scsi_link SLIST | Kenneth R Westerback |
2019-08-18 | sc_buswidth field in struct scsi_link is redundant. Just use | Kenneth R Westerback |
2019-08-17 | Nuke some unused variables, tweak some declarations and | Kenneth R Westerback |
2019-08-14 | scsi_[add|remove]_link() are local functions so move their | Kenneth R Westerback |
2019-08-14 | Whitespace nit. Add {} around body of SLIST_FOREACH(). | Kenneth R Westerback |
2019-08-14 | Tweak some comments. | Kenneth R Westerback |
2017-09-08 | If you use sys/param.h, you don't need sys/types.h | Theo de Raadt |
2016-03-12 | Standardize on calling local scsi_link variables 'link' instead of | Kenneth R Westerback |
2016-03-10 | Enforce some naming sanity. Stop using 'sc_link' to mean two different | Kenneth R Westerback |
2015-08-23 | add some sizes to free. looked over by deraadt | Ted Unangst |
2015-06-07 | More damned eye searing whitespace. | Kenneth R Westerback |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-11 | we dont need sys/lock.h because we dont use lockmgr, but we do need | David Gwynne |
2014-12-15 | convert bcopy to memcpy. ok dlg krw | Ted Unangst |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-04-22 | factor out the code that figures out whether you're probing or detaching | David Gwynne |