aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2006-06-10 12:37:19 -0400
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2006-06-10 17:25:21 -0400
commit8d7feac3c7504425aaf61dc7d804685a6b89ee43 (patch)
tree0dd98c8cbfea10bdc748951cf9dc10b44f0042eb /include/linux
parentbeb40487508290f5d6565598c60a3f44261beef2 (diff)
[SCSI] remove RQ_SCSI_* flags
The RQ_SCSI_* flags are a vestiage of a long past history. The EH code still sets them but we never make use of that information. The other users is pluto.c which never had a chance to work but needs to be kept compiling to keep Davem happy, so copy over the definition there. We could probably get rid of RQ_ACTIVE/RQ_INACTIVE aswell with some work, there's only two more or less bogus looking uses in ubd and scsi. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/blkdev.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index 59e1259b1c4..c889c459fd1 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -439,9 +439,6 @@ struct request_queue
439 439
440#define RQ_INACTIVE (-1) 440#define RQ_INACTIVE (-1)
441#define RQ_ACTIVE 1 441#define RQ_ACTIVE 1
442#define RQ_SCSI_BUSY 0xffff
443#define RQ_SCSI_DONE 0xfffe
444#define RQ_SCSI_DISCONNECTING 0xffe0
445 442
446#define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */ 443#define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */
447#define QUEUE_FLAG_QUEUED 1 /* uses generic tag queueing */ 444#define QUEUE_FLAG_QUEUED 1 /* uses generic tag queueing */