From 380feaffb0fcc8e5f615ed8e86d2e93717a6f2c6 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Tue, 10 Jul 2012 15:02:55 +0200 Subject: scsi-disk: parse MODE SELECT commands and parameters This adds the bulk of the parsing code for MODE SELECT, including breaking out changes to different mode pages, and checking that only changeable values are modified. In order to report errors correctly two passes are made through the parameters; the first only looks for errors, the second actually applies the changes to the mode page. Signed-off-by: Paolo Bonzini --- hw/scsi.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'hw/scsi.h') diff --git a/hw/scsi.h b/hw/scsi.h index ea8a155..e2fb8a4 100644 --- a/hw/scsi.h +++ b/hw/scsi.h @@ -180,6 +180,10 @@ extern const struct SCSISense sense_code_INVALID_OPCODE; extern const struct SCSISense sense_code_LBA_OUT_OF_RANGE; /* Illegal request, Invalid field in CDB */ extern const struct SCSISense sense_code_INVALID_FIELD; +/* Illegal request, Invalid field in parameter list */ +extern const struct SCSISense sense_code_INVALID_PARAM; +/* Illegal request, Parameter list length error */ +extern const struct SCSISense sense_code_INVALID_PARAM_LEN; /* Illegal request, LUN not supported */ extern const struct SCSISense sense_code_LUN_NOT_SUPPORTED; /* Illegal request, Saving parameters not supported */ -- cgit v1.1