mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 15:20:58 +07:00
scsi/osd: don't save block errors into req_results
We will only have sense data if the command executed and got a SCSI result, so this is pointless. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
parent
401741547f
commit
10f64ec5dd
@ -477,7 +477,7 @@ static void _set_error_resid(struct osd_request *or, struct request *req,
|
||||
int error)
|
||||
{
|
||||
or->async_error = error;
|
||||
or->req_errors = scsi_req(req)->result ? : error;
|
||||
or->req_errors = scsi_req(req)->result;
|
||||
or->sense_len = scsi_req(req)->sense_len;
|
||||
if (or->sense_len)
|
||||
memcpy(or->sense, scsi_req(req)->sense, or->sense_len);
|
||||
|
Loading…
Reference in New Issue
Block a user