created | 2020-09-06T07:58:22Z |
---|---|
begin | 2020-09-02T00:00:00Z |
end | 2020-09-03T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2020-09-02T12:36:12Z | |||
---|---|---|---|---|
author | mglocker | |||
files | src/sys/dev/usb/ugen.c | log | diff | annotate |
src/sys/dev/usb/usb.c | log | diff | annotate | |
message |
Don't rely on wTotalLength for usbd_get_cdesc() malloc/free but on the actual length which has been allocated. We saw cases where the wTotalLength value is changing on a second read, e.g. when a USB device was waked up from sleep mode. ok mpi@ |
date | 2020-09-02T16:07:31Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/powerpc64/dev/kexec.c | log | diff | annotate |
message |
vfs_shutdown() is neccessary to ensure buffer cache drain before reexec() ok kettenis visa |
date | 2020-09-02T16:07:33Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/octeon/dev/octboot.c | log | diff | annotate |
message |
vfs_shutdown() is neccessary to ensure buffer cache drain before reexec() ok kettenis visa |
date | 2020-09-02T21:16:29Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/arch/sparc64/dev/vdsk.c | log | diff | annotate |
src/sys/dev/softraid.c | log | diff | annotate | |
src/sys/dev/ata/atascsi.c | log | diff | annotate | |
src/sys/dev/ic/aac.c | log | diff | annotate | |
src/sys/dev/ic/ami.c | log | diff | annotate | |
src/sys/dev/ic/cac.c | log | diff | annotate | |
src/sys/dev/ic/gdt_common.c | log | diff | annotate | |
src/sys/dev/ic/nvme.c | log | diff | annotate | |
src/sys/dev/pci/ips.c | log | diff | annotate | |
src/sys/dev/pv/xbf.c | log | diff | annotate | |
src/sys/dev/sdmmc/sdmmc_scsi.c | log | diff | annotate | |
message |
When building emulated INQUIRY results use the SCSI_REV_* #define's to initialize the 'version' field. Not numbers. |
date | 2020-09-02T22:00:26Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/dev/ic/twe.c | log | diff | annotate |
src/sys/dev/pv/vioblk.c | log | diff | annotate | |
message |
When building emulated INQUIRY results use the SCSI_REV_* #define's to initialize the 'version' field. Not numbers. |
date | 2020-09-02T23:41:01Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/scsi/scsi_all.h | log | diff | annotate |
message |
Add #define SID_SCSI2_RESPONSE 0x2 to allow elimination of another bunch of magic numbers. As the nearby comment says '< 2 is obsolete. >2 is reserved'. So 0x2 is just right. |