diff options
| author | Linus Torvalds <torvalds@athlon.transmeta.com> | 2002-02-05 00:13:42 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@athlon.transmeta.com> | 2002-02-05 00:13:42 -0800 |
| commit | d694597ed5e1f6613d0933ee692333ab2542b603 (patch) | |
| tree | b0b294737db3a07106d4e5b890337fa36d42651b /include/linux/blkdev.h | |
| parent | 5fb612aa91a08c183200312d943de6691f806ce6 (diff) | |
v2.5.2 -> v2.5.2.1
- Al Viro: fix up silly problem in swapfile filp cleanups in 2.5.2
- Tachino Nobuhiro: fix another error return for swapfile filp code
- Robert Love: merge some of Ingo's scheduler fixes
- David Miller: networking, sparc and some scsi driver fixes
- Tim Waugh: parport update
- OGAWA Hirofumi: fatfs cleanups and bugfixes
- Roland Dreier: fix vsscanf buglets.
- Ben LaHaise: include file cleanup
- Andre Hedrick: IDE taskfile update
Diffstat (limited to 'include/linux/blkdev.h')
| -rw-r--r-- | include/linux/blkdev.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 0cbe78286ab5..ad5250710a7c 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -80,6 +80,7 @@ enum rq_flag_bits { */ __REQ_DRIVE_CMD, __REQ_DRIVE_TASK, + __REQ_DRIVE_ACB, __REQ_PC, /* packet command (special) */ __REQ_BLOCK_PC, /* queued down pc from block layer */ @@ -99,11 +100,14 @@ enum rq_flag_bits { #define REQ_DONTPREP (1 << __REQ_DONTPREP) #define REQ_DRIVE_CMD (1 << __REQ_DRIVE_CMD) #define REQ_DRIVE_TASK (1 << __REQ_DRIVE_TASK) +#define REQ_DRIVE_ACB (1 << __REQ_DRIVE_ACB) #define REQ_PC (1 << __REQ_PC) #define REQ_SENSE (1 << __REQ_SENSE) #define REQ_BLOCK_PC (1 << __REQ_BLOCK_PC) #define REQ_SPECIAL (1 << __REQ_SPECIAL) +#define REQ_DRIVE_TASKFILE REQ_DRIVE_ACB + #include <linux/elevator.h> typedef int (merge_request_fn) (request_queue_t *, struct request *, |
