From 89e808a7e899b6211b26b52c62849c1d46bfd054 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Sat, 15 Nov 2014 05:35:50 +0000 Subject: [PATCH] Merged revisions 5855 via svnmerge from svn+ssh://vlnb@svn.code.sf.net/p/scst/svn/trunk ........ r5855 | vlnb | 2014-11-14 17:44:06 -0800 (Fri, 14 Nov 2014) | 3 lines Ease severity of reporting unsupported REPORT LUNS SELECT REPORT value ........ git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/3.0.x@5857 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/scst_targ.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scst/src/scst_targ.c b/scst/src/scst_targ.c index 579a3857b..036a1d753 100644 --- a/scst/src/scst_targ.c +++ b/scst/src/scst_targ.c @@ -1853,8 +1853,8 @@ static int scst_report_luns_local(struct scst_cmd *cmd) cmd->driver_status = 0; if ((cmd->cdb[2] != 0) && (cmd->cdb[2] != 2)) { - PRINT_ERROR("Unsupported SELECT REPORT value %x in REPORT " - "LUNS command", cmd->cdb[2]); + TRACE(TRACE_MINOR, "Unsupported SELECT REPORT value %x in " + "REPORT LUNS command", cmd->cdb[2]); scst_set_invalid_field_in_cdb(cmd, 2, 0); goto out_compl; }