summaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide-tape.c
diff options
context:
space:
mode:
authorTejun Heo2009-04-19 00:00:42 +0200
committerTejun Heo2009-04-19 00:00:42 +0200
commitc267cc1c4db4ccb3406d045a8da8660f0bbfe08d (patch)
treef462e0fa6d32b79e0145cbde5850711c2c5851cc /drivers/ide/ide-tape.c
parentide-taskfile: don't abuse rq->buffer (diff)
downloadkernel-qcow2-linux-c267cc1c4db4ccb3406d045a8da8660f0bbfe08d.tar.gz
kernel-qcow2-linux-c267cc1c4db4ccb3406d045a8da8660f0bbfe08d.tar.xz
kernel-qcow2-linux-c267cc1c4db4ccb3406d045a8da8660f0bbfe08d.zip
ide-atapi: don't abuse rq->buffer
Impact: rq->buffer usage cleanup ide-atapi uses rq->buffer as private opaque value for internal special requests. rq->special isn't used for these cases (the only case where rq->special is used is for ide-tape rw requests). Use rq->special instead. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/ide/ide-tape.c')
-rw-r--r--drivers/ide/ide-tape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c
index 3a53e0834cf7..aadf53cfac6f 100644
--- a/drivers/ide/ide-tape.c
+++ b/drivers/ide/ide-tape.c
@@ -828,7 +828,7 @@ static ide_startstop_t idetape_do_request(ide_drive_t *drive,
goto out;
}
if (rq->cmd[13] & REQ_IDETAPE_PC1) {
- pc = (struct ide_atapi_pc *) rq->buffer;
+ pc = (struct ide_atapi_pc *)rq->special;
rq->cmd[13] &= ~(REQ_IDETAPE_PC1);
rq->cmd[13] |= REQ_IDETAPE_PC2;
goto out;