ide-atapi: add a len-parameter to ide_queue_pc_tail
This is in preparation for removing ide_atapi_pc. There should be no functional change resulting from this patch. Signed-off-by: Borislav Petkov <petkovbb@gmail.com>
This commit is contained in:
@@ -50,7 +50,7 @@ static int ide_floppy_get_format_capacities(ide_drive_t *drive,
|
||||
pc->buf = &pc_buf[0];
|
||||
pc->buf_size = sizeof(pc_buf);
|
||||
|
||||
if (ide_queue_pc_tail(drive, floppy->disk, pc)) {
|
||||
if (ide_queue_pc_tail(drive, floppy->disk, pc, pc->req_xfer)) {
|
||||
printk(KERN_ERR "ide-floppy: Can't get floppy parameters\n");
|
||||
return -EIO;
|
||||
}
|
||||
@@ -124,7 +124,7 @@ static int ide_floppy_get_sfrp_bit(ide_drive_t *drive, struct ide_atapi_pc *pc)
|
||||
ide_floppy_create_mode_sense_cmd(pc, IDEFLOPPY_CAPABILITIES_PAGE);
|
||||
pc->flags |= PC_FLAG_SUPPRESS_ERROR;
|
||||
|
||||
if (ide_queue_pc_tail(drive, floppy->disk, pc))
|
||||
if (ide_queue_pc_tail(drive, floppy->disk, pc, pc->req_xfer))
|
||||
return 1;
|
||||
|
||||
if (pc->buf[8 + 2] & 0x40)
|
||||
@@ -172,7 +172,7 @@ static int ide_floppy_format_unit(ide_drive_t *drive, struct ide_atapi_pc *pc,
|
||||
ide_floppy_get_sfrp_bit(drive, pc);
|
||||
ide_floppy_create_format_unit_cmd(pc, blocks, length, flags);
|
||||
|
||||
if (ide_queue_pc_tail(drive, floppy->disk, pc))
|
||||
if (ide_queue_pc_tail(drive, floppy->disk, pc, pc->req_xfer))
|
||||
err = -EIO;
|
||||
|
||||
out:
|
||||
@@ -200,7 +200,7 @@ static int ide_floppy_get_format_progress(ide_drive_t *drive,
|
||||
|
||||
if (drive->atapi_flags & IDE_AFLAG_SRFP) {
|
||||
ide_create_request_sense_cmd(drive, pc);
|
||||
if (ide_queue_pc_tail(drive, floppy->disk, pc))
|
||||
if (ide_queue_pc_tail(drive, floppy->disk, pc, pc->req_xfer))
|
||||
return -EIO;
|
||||
|
||||
if (floppy->sense_key == 2 &&
|
||||
|
Reference in New Issue
Block a user