|
@@ -418,11 +418,14 @@ void ide_map_sg(ide_drive_t *drive, struct request *rq)
|
|
|
ide_hwif_t *hwif = drive->hwif;
|
|
|
struct scatterlist *sg = hwif->sg_table;
|
|
|
|
|
|
- if (rq->cmd_type != REQ_TYPE_ATA_TASKFILE) {
|
|
|
- hwif->sg_nents = blk_rq_map_sg(drive->queue, rq, sg);
|
|
|
- } else {
|
|
|
+ if (rq->cmd_type == REQ_TYPE_ATA_TASKFILE) {
|
|
|
sg_init_one(sg, rq->buffer, rq->nr_sectors * SECTOR_SIZE);
|
|
|
hwif->sg_nents = 1;
|
|
|
+ } else if (!rq->bio) {
|
|
|
+ sg_init_one(sg, rq->data, rq->data_len);
|
|
|
+ hwif->sg_nents = 1;
|
|
|
+ } else {
|
|
|
+ hwif->sg_nents = blk_rq_map_sg(drive->queue, rq, sg);
|
|
|
}
|
|
|
}
|
|
|
|