scsi xcopy: suppress error messages This patch suppresses error messages when copying between two arrays that support XCOPY each, but that cannot copy data between each other. Signed-off-by: Mikulas Patocka --- drivers/scsi/sd.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) Index: linux-4.7-rc2/drivers/scsi/sd.c =================================================================== --- linux-4.7-rc2.orig/drivers/scsi/sd.c 2016-06-06 15:47:06.000000000 +0200 +++ linux-4.7-rc2/drivers/scsi/sd.c 2016-06-06 15:47:59.000000000 +0200 @@ -2001,6 +2001,20 @@ static int sd_done(struct scsi_cmnd *SCp req->cmd_flags |= REQ_QUIET; } } + } else if (sshdr.asc == 0x26) { + switch (op) { + /* + * Copying between two arrays that support XCOPY, but + * cannot access each other. + */ + case EXTENDED_COPY: + if ((SCpnt->cmnd[1] & 0x1f) == 0) { + good_bytes = 0; + req->__data_len = blk_rq_bytes(req); + req->cmd_flags |= REQ_QUIET; + } + break; + } } break; default: