aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJens Axboe <jens.axboe@oracle.com>2009-02-02 08:43:48 +0100
committerJens Axboe <jens.axboe@oracle.com>2009-02-02 08:43:48 +0100
commit0648e10d71c8e510d80772c4cb4220c97e9c34c7 (patch)
tree65cb4b2780a1c072209b79bbb1b34cb927416611 /include
parentblock: fix oops in blk_queue_io_stat() (diff)
downloadlinux-dev-0648e10d71c8e510d80772c4cb4220c97e9c34c7.tar.xz
linux-dev-0648e10d71c8e510d80772c4cb4220c97e9c34c7.zip
block: fix inconsistent parenthesisation of QUEUE_FLAG_DEFAULT
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/blkdev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index d08c4b8219a6..dcaa0fd84b02 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -455,7 +455,7 @@ struct request_queue
#define QUEUE_FLAG_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \
(1 << QUEUE_FLAG_CLUSTER) | \
- 1 << QUEUE_FLAG_STACKABLE)
+ (1 << QUEUE_FLAG_STACKABLE))
static inline int queue_is_locked(struct request_queue *q)
{