summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQi Yong <qiyong@mail.fc-cn.com>2007-07-25 08:45:51 +0200
committerJens Axboe <jens.axboe@oracle.com>2007-07-27 08:08:24 +0200
commit4e97182a22ed5ca6a5cbc39275d4752d5a4369da (patch)
tree1bdd4bdc0c3ef77eca5336e205ab39fc34b357d3
parentd941cf5e373c356723fa648b9f0302a11c9b1770 (diff)
downloadlinux-0-day-4e97182a22ed5ca6a5cbc39275d4752d5a4369da.tar.gz
linux-0-day-4e97182a22ed5ca6a5cbc39275d4752d5a4369da.tar.xz
[patch] QUEUE_FLAG_READFULL QUEUE_FLAG_WRITEFULL comment fix
The two comments were transposed. Signed-off-by: Qi Yong <qiyong@mail.fc-cn.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
-rw-r--r--include/linux/blkdev.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index a1c96d9ee720c..b126c6f68e27b 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -483,8 +483,8 @@ struct request_queue
#define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */
#define QUEUE_FLAG_QUEUED 1 /* uses generic tag queueing */
#define QUEUE_FLAG_STOPPED 2 /* queue is stopped */
-#define QUEUE_FLAG_READFULL 3 /* write queue has been filled */
-#define QUEUE_FLAG_WRITEFULL 4 /* read queue has been filled */
+#define QUEUE_FLAG_READFULL 3 /* read queue has been filled */
+#define QUEUE_FLAG_WRITEFULL 4 /* write queue has been filled */
#define QUEUE_FLAG_DEAD 5 /* queue being torn down */
#define QUEUE_FLAG_REENTER 6 /* Re-entrancy avoidance */
#define QUEUE_FLAG_PLUGGED 7 /* queue is plugged */