diff options
author | Jens Axboe <axboe@kernel.dk> | 2011-10-25 09:51:48 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2011-10-25 09:51:48 -0400 |
commit | 334c2b0b8b2ab186fa198413386cba41fffcb4f2 (patch) | |
tree | 56c4648cd19c6a613ff653933697ee5cc3e18c87 /block | |
parent | a38eb630fa224d6fba8c14a4063174bc5e0f63bb (diff) |
blk-throttle: use queue_is_locked() instead of lockdep_is_held()
We can't use the latter if !CONFIG_LOCKDEP.
Reported-by: Sedat Dilek <sedat.dilek@googlemail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-throttle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-throttle.c b/block/blk-throttle.c index 8edb9499b509..4553245d9317 100644 --- a/block/blk-throttle.c +++ b/block/blk-throttle.c | |||
@@ -1218,7 +1218,7 @@ void blk_throtl_drain(struct request_queue *q) | |||
1218 | struct bio_list bl; | 1218 | struct bio_list bl; |
1219 | struct bio *bio; | 1219 | struct bio *bio; |
1220 | 1220 | ||
1221 | lockdep_is_held(q->queue_lock); | 1221 | WARN_ON_ONCE(!queue_is_locked(q)); |
1222 | 1222 | ||
1223 | bio_list_init(&bl); | 1223 | bio_list_init(&bl); |
1224 | 1224 | ||