diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/sd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index a45e12ac7e28..c5a189c50286 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c | |||
@@ -1011,7 +1011,7 @@ static int sd_prep_fn(struct request_queue *q, struct request *rq) | |||
1011 | SCpnt->cmnd[29] = (unsigned char) (this_count >> 16) & 0xff; | 1011 | SCpnt->cmnd[29] = (unsigned char) (this_count >> 16) & 0xff; |
1012 | SCpnt->cmnd[30] = (unsigned char) (this_count >> 8) & 0xff; | 1012 | SCpnt->cmnd[30] = (unsigned char) (this_count >> 8) & 0xff; |
1013 | SCpnt->cmnd[31] = (unsigned char) this_count & 0xff; | 1013 | SCpnt->cmnd[31] = (unsigned char) this_count & 0xff; |
1014 | } else if (block > 0xffffffff) { | 1014 | } else if (sdp->use_16_for_rw) { |
1015 | SCpnt->cmnd[0] += READ_16 - READ_6; | 1015 | SCpnt->cmnd[0] += READ_16 - READ_6; |
1016 | SCpnt->cmnd[1] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0); | 1016 | SCpnt->cmnd[1] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0); |
1017 | SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0; | 1017 | SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0; |
@@ -2203,6 +2203,8 @@ got_data: | |||
2203 | } | 2203 | } |
2204 | } | 2204 | } |
2205 | 2205 | ||
2206 | sdp->use_16_for_rw = (sdkp->capacity > 0xffffffff); | ||
2207 | |||
2206 | /* Rescale capacity to 512-byte units */ | 2208 | /* Rescale capacity to 512-byte units */ |
2207 | if (sector_size == 4096) | 2209 | if (sector_size == 4096) |
2208 | sdkp->capacity <<= 3; | 2210 | sdkp->capacity <<= 3; |