ide-floppy: block pc always uses bio
Impact: remove unnecessary code path Block pc requests always use bio and rq->data is always NULL. No need to worry about !rq->bio cases in idefloppy_block_pc_cmd(). Note that ide-atapi uses ide_pio_bytes() for bio PIO transfer which handle sg fine. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
1873b90cde
commit
7f006dc24f
@ -216,15 +216,13 @@ static void idefloppy_blockpc_cmd(struct ide_disk_obj *floppy,
|
|||||||
ide_init_pc(pc);
|
ide_init_pc(pc);
|
||||||
memcpy(pc->c, rq->cmd, sizeof(pc->c));
|
memcpy(pc->c, rq->cmd, sizeof(pc->c));
|
||||||
pc->rq = rq;
|
pc->rq = rq;
|
||||||
if (rq->data_len && rq_data_dir(rq) == WRITE)
|
if (rq->data_len) {
|
||||||
pc->flags |= PC_FLAG_WRITING;
|
|
||||||
pc->buf = rq->data;
|
|
||||||
if (rq->bio)
|
|
||||||
pc->flags |= PC_FLAG_DMA_OK;
|
pc->flags |= PC_FLAG_DMA_OK;
|
||||||
/*
|
if (rq_data_dir(rq) == WRITE)
|
||||||
* possibly problematic, doesn't look like ide-floppy correctly
|
pc->flags |= PC_FLAG_WRITING;
|
||||||
* handled scattered requests if dma fails...
|
}
|
||||||
*/
|
/* pio will be performed by ide_pio_bytes() which handles sg fine */
|
||||||
|
pc->buf = NULL;
|
||||||
pc->req_xfer = pc->buf_size = rq->data_len;
|
pc->req_xfer = pc->buf_size = rq->data_len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user