created | 2020-03-23T22:04:11Z |
---|---|
begin | 2020-03-12T00:00:00Z |
end | 2020-03-13T00:00:00Z |
path | src/sys |
commits | 7 |
date | 2020-03-12T13:49:25Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/scsi/scsi_base.c | log | diff | annotate |
message |
Eliminate 'len' parameter from scsi_mode_sense[_big](). It's always sizeof(struct scsi_mode_sense_buf). No functional change. |
date | 2020-03-12T15:29:47Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/kern/vfs_bio.c | log | diff | annotate |
message |
Enable caching when turning a synchronous write into a delayed write. Otherwise the write will be discarded, which would prevent use of vnd(4) on top of an async-mounted file system. OK beck@ |
date | 2020-03-12T16:15:03Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/scsi/scsi_base.c | log | diff | annotate |
message |
Check for short mode sense error inside scsi_mode_sense_big() rather than after the only invocation. No functional change. |
date | 2020-03-12T17:38:02Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/kern/vfs_bio.c | log | diff | annotate |
message | Revert previous. Something in it causes unexpected slowdown. |
date | 2020-03-12T19:19:37Z | |||
---|---|---|---|---|
author | otto | |||
files | src/sys/arch/hppa/stand/boot/conf.c | log | diff | annotate |
src/sys/arch/hppa/stand/libsa/Makefile | log | diff | annotate | |
message | Allow hppa boot(8) to read from an ffs2 filesystem; ok kettenis@ |
date | 2020-03-12T19:21:01Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/scsi/scsi_base.c | log | diff | annotate |
message |
Pass scsi_mode_sense_buf pointers to scsi_mode_sense[_buf]() rather than scsi_mode_header[_big] pointers to the same data. Continues the umtamgling and simplification of the mode sense code. CID 1491299 CID 1491297 |
date | 2020-03-12T22:14:20Z | |||
---|---|---|---|---|
author | tobhe | |||
files | src/sys/arch/amd64/amd64/vmm.c | log | diff | annotate |
message |
Use strlcpy to make sure 'vm_name' and 'vir_name' are NUL terminated. CID 1453255 ok deraadt@ |