summaryrefslogtreecommitdiffstats
path: root/include/linux/ide.h
diff options
context:
space:
mode:
authorChristoph Hellwig2018-11-10 09:30:49 +0100
committerJens Axboe2018-11-10 16:03:52 +0100
commit22ce0a7ccf23d55d1fdaa2974002f8b5ae765665 (patch)
treeeeec96b0413cbbfd95305acc783d7d6574f3ce42 /include/linux/ide.h
parentpd: replace ->special use with private data in the request (diff)
downloadkernel-qcow2-linux-22ce0a7ccf23d55d1fdaa2974002f8b5ae765665.tar.gz
kernel-qcow2-linux-22ce0a7ccf23d55d1fdaa2974002f8b5ae765665.tar.xz
kernel-qcow2-linux-22ce0a7ccf23d55d1fdaa2974002f8b5ae765665.zip
ide: don't use req->special
Just replace it with a field of the same name in struct ide_req. Reviewed-by: Hannes Reinecke <hare@suse.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r--include/linux/ide.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 272704ff21ee..e7d29ae633cd 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -50,6 +50,7 @@ struct ide_request {
struct scsi_request sreq;
u8 sense[SCSI_SENSE_BUFFERSIZE];
u8 type;
+ void *special;
};
static inline struct ide_request *ide_req(struct request *rq)