LOG_SELECT/SENSE stub added. Looks like it is more correct way to refuse those commands

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@112 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2007-04-27 14:46:22 +00:00
parent 8ef28e5210
commit b221fe690e

View File

@@ -163,6 +163,7 @@ static void vdisk_exec_read_capacity16(struct scst_cmd *cmd);
static void vdisk_exec_inquiry(struct scst_cmd *cmd);
static void vdisk_exec_mode_sense(struct scst_cmd *cmd);
static void vdisk_exec_mode_select(struct scst_cmd *cmd);
static void vdisk_exec_log(struct scst_cmd *cmd);
static void vdisk_exec_read_toc(struct scst_cmd *cmd);
static void vdisk_exec_prevent_allow_medium_removal(struct scst_cmd *cmd);
static int vdisk_fsync(struct scst_vdisk_thr *thr,
@@ -776,6 +777,10 @@ static int vdisk_do_job(struct scst_cmd *cmd)
case MODE_SELECT_10:
vdisk_exec_mode_select(cmd);
break;
case LOG_SELECT:
case LOG_SENSE:
vdisk_exec_log(cmd);
break;
case ALLOW_MEDIUM_REMOVAL:
vdisk_exec_prevent_allow_medium_removal(cmd);
break;
@@ -1430,6 +1435,18 @@ out:
return;
}
static void vdisk_exec_log(struct scst_cmd *cmd)
{
TRACE_ENTRY();
/* No log pages are supported */
scst_set_cmd_error(cmd,
SCST_LOAD_SENSE(scst_sense_invalid_field_in_cdb));
TRACE_EXIT();
return;
}
static void vdisk_exec_read_capacity(struct scst_cmd *cmd)
{
int32_t length;