Age | Commit message (Expand) | Author |
2020-08-19 | Replace last 2 'blah & (flag1 | flag2) == 0' with !ISSET(blah, (flag1 | flag2)). | Kenneth R Westerback |
2020-08-11 | Explicitly #include <scsi/scsi_debug.h> rather than assuming scsiconf.h will do | Kenneth R Westerback |
2020-07-27 | Refactor scsi_show_flags() to allow 32-bit flags. Display unnamed flags as one | Kenneth R Westerback |
2020-07-27 | SDEV_2NDBUS is gone. Update flagnames[] appropriately. | Kenneth R Westerback |
2020-07-16 | Access scsibus_softc info (luns, adapter, adapter_target, | Kenneth R Westerback |
2020-03-12 | Pass scsi_mode_sense_buf pointers to scsi_mode_sense[_buf]() rather | Kenneth R Westerback |
2020-03-12 | Check for short mode sense error inside scsi_mode_sense_big() | Kenneth R Westerback |
2020-03-12 | Eliminate 'len' parameter from scsi_mode_sense[_big](). It's | Kenneth R Westerback |
2020-03-11 | No need to pass 20000 to scsi_mode_sense[_big]() as the desired | Kenneth R Westerback |
2020-01-22 | scsi_delay(): sleep without lbolt | cheloha |
2019-12-06 | Various cleanup tweaks. 'return' is not a function. KNF. Whitespace, | Kenneth R Westerback |
2019-12-05 | Don't discard error from mode sense (6) if mode sense (10) is | Kenneth R Westerback |
2019-12-05 | Shrink scsi_mode_do_sense() parameter list by eliminating the three | Kenneth R Westerback |
2019-12-05 | No need for 'byte2' parameter to scsi_mode_sense[_big]() since we | Kenneth R Westerback |
2019-12-05 | Move prototypes for scsi_mode_sense(), scsi_mode_sense_big(), | Kenneth R Westerback |
2019-12-04 | Convert infinite sleeps to {m,t}sleep_nsec(9). | Martin Pieuchot |
2019-12-03 | Check for expected mode sense page code as well as expected mode page length ... | Kenneth R Westerback |
2019-12-03 | Add display of mode sense data to SCSIDEBUG. | Kenneth R Westerback |
2019-12-02 | Have SCSIDEBUG show the number of bytes of VPD inquiry data received, | Kenneth R Westerback |
2019-12-02 | Don't forget the scsi_vpd_header when calculating the number of bytes | Kenneth R Westerback |
2019-12-01 | Tweak variable names to be consistent with 'pg_code' and 'pg_length' | Kenneth R Westerback |
2019-12-01 | Make prototype and implementation signatures the same by removing | Kenneth R Westerback |
2019-11-28 | Abstract mode sense block descriptor parsing into a separate function. | Kenneth R Westerback |
2019-11-28 | Align an annoying comment. | Kenneth R Westerback |
2019-11-28 | Always pass a pointer to 'big' to scsi_do_mode_sense(). | Kenneth R Westerback |
2019-11-26 | Don't zero existing values for density, block_count and block_size in | 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-22 | Be consistent and always use CLR() to clear flags. | Kenneth R Westerback |
2019-11-21 | Be consistent and always use [!]ISSET() to test flags in xs->flags. | Kenneth R Westerback |
2019-11-21 | Be consistent and always use SET() to set flags in xs->flags. | Kenneth R Westerback |
2019-11-09 | Fix SCSIDEBUG display of VPD inquiry data. | Kenneth R Westerback |
2019-09-29 | Introduce SC_DEBUG_SENSE() and simplify code by eliminating a bunch | Kenneth R Westerback |
2019-09-29 | Move some logic inside scsi_show_xs() instead of surrounding the | 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-27 | Shuffle and consolidate SCSIDEBUG declarations into fewer sections in | Kenneth R Westerback |
2019-09-23 | When printing the scsi_link info under SCSIDEBUG show state, luns, | Kenneth R Westerback |
2019-09-21 | Expand scsi_inquiry_data to 96 bytes to include new fields. If the | Kenneth R Westerback |
2019-09-20 | Print inquiry and read capacity (10 and 16) data under SCSIDEBUG. | 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 |
2017-09-08 | If you use sys/param.h, you don't need sys/types.h | Theo de Raadt |
2017-05-29 | To prevent anyone else from stumbling on this (now) archaic bit of | Kenneth R Westerback |
2016-09-15 | all pools have their ipl set via pool_setipl, so fold it into pool_init. | David Gwynne |
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 |
2016-03-07 | Sync no-argument function declaration and definition by adding (void). | Christian Weisgerber |
2015-06-07 | More damned eye searing whitespace. | Kenneth R Westerback |