diff options
| author | Jens Axboe <axboe@burns.home.kernel.dk> | 2002-08-16 18:10:56 +0200 |
|---|---|---|
| committer | Jens Axboe <axboe@burns.home.kernel.dk> | 2002-08-16 18:10:56 +0200 |
| commit | 377cbd7c6c45fd11e7d2f7556914817f60095442 (patch) | |
| tree | a7782f1918432c21fcc8b298ae10ec3371e6879f /include/linux/blkdev.h | |
| parent | 4b18aed114d6e2f0a47c155639724a554dfdc244 (diff) | |
Add back in the request types that 2.4 still uses, need to clean these
a bit later
Diffstat (limited to 'include/linux/blkdev.h')
| -rw-r--r-- | include/linux/blkdev.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index d0a89877ad94..9f1ac6d07fe8 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -86,7 +86,9 @@ enum rq_flag_bits { __REQ_SENSE, /* sense retrival */ __REQ_SPECIAL, /* driver suplied command */ - + __REQ_DRIVE_CMD, + __REQ_DRIVE_TASK, + __REQ_DRIVE_TASKFILE, __REQ_NR_BITS, /* stops here */ }; @@ -102,6 +104,9 @@ enum rq_flag_bits { #define REQ_BLOCK_PC (1 << __REQ_BLOCK_PC) #define REQ_SENSE (1 << __REQ_SENSE) #define REQ_SPECIAL (1 << __REQ_SPECIAL) +#define REQ_DRIVE_CMD (1 << __REQ_DRIVE_CMD) +#define REQ_DRIVE_TASK (1 << __REQ_DRIVE_TASK) +#define REQ_DRIVE_TASKFILE (1 << __REQ_DRIVE_TASKFILE) #include <linux/elevator.h> |
