Module Name: src Committed By: tsutsui Date: Sat Jun 24 07:02:11 UTC 2023
Modified Files: src/sys/arch/luna68k/stand/boot: sd.c Log Message: Fix a wrong cdb size of SCSI disk write command. From OpenBSD/luna88k. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/arch/luna68k/stand/boot/sd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/luna68k/stand/boot/sd.c diff -u src/sys/arch/luna68k/stand/boot/sd.c:1.12 src/sys/arch/luna68k/stand/boot/sd.c:1.13 --- src/sys/arch/luna68k/stand/boot/sd.c:1.12 Sat Feb 14 13:07:39 2015 +++ src/sys/arch/luna68k/stand/boot/sd.c Sat Jun 24 07:02:11 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: sd.c,v 1.12 2015/02/14 13:07:39 tsutsui Exp $ */ +/* $NetBSD: sd.c,v 1.13 2023/06/24 07:02:11 tsutsui Exp $ */ /* * Copyright (c) 1992 OMRON Corporation. @@ -215,7 +215,7 @@ static struct scsi_generic_cdb cdb_read }; static struct scsi_generic_cdb cdb_write = { - 6, + 10, { CMD_WRITE_EXT, 0, 0, 0, 0, 0, 0, 0, 0, 0 } };