diff options
Diffstat (limited to 'drivers/scsi/libsas/sas_expander.c')
| -rw-r--r-- | drivers/scsi/libsas/sas_expander.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/libsas/sas_expander.c b/drivers/scsi/libsas/sas_expander.c index 022bb6e10d98..570b2cb2da43 100644 --- a/drivers/scsi/libsas/sas_expander.c +++ b/drivers/scsi/libsas/sas_expander.c @@ -2174,12 +2174,12 @@ int sas_smp_handler(struct Scsi_Host *shost, struct sas_rphy *rphy,  			       bio_data(rsp->bio), blk_rq_bytes(rsp));  	if (ret > 0) {  		/* positive number is the untransferred residual */ -		rsp->resid_len = ret; -		req->resid_len = 0; +		scsi_req(rsp)->resid_len = ret; +		scsi_req(req)->resid_len = 0;  		ret = 0;  	} else if (ret == 0) { -		rsp->resid_len = 0; -		req->resid_len = 0; +		scsi_req(rsp)->resid_len = 0; +		scsi_req(req)->resid_len = 0;  	}  	return ret;  | 
