# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.562 -> 1.563 # include/linux/blkdev.h 1.58 -> 1.59 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 02/08/16 axboe@burns.home.kernel.dk 1.563 # Add back in the request types that 2.4 still uses, need to clean these # a bit later # -------------------------------------------- # diff -Nru a/include/linux/blkdev.h b/include/linux/blkdev.h --- a/include/linux/blkdev.h Fri Aug 16 14:53:32 2002 +++ b/include/linux/blkdev.h Fri Aug 16 14:53:32 2002 @@ -86,7 +86,9 @@ __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 @@ #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