blob: f64b39351599125f4268bbce97986751f0abe059 [file] [log] [blame]
From 564200fc02692e8470ab886e807b8219be32a66e Mon Sep 17 00:00:00 2001
From: Thomas Gleixner <tglx@linutronix.de>
Date: Tue, 14 Jun 2011 17:05:09 +0200
Subject: [PATCH] block: Turn off warning which is bogus on RT
On -RT the context is always with IRQs enabled. Ignore this warning on -RT.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
diff --git a/block/blk-core.c b/block/blk-core.c
index ce997e9f0747..a2b67aba2b6c 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -214,7 +214,7 @@ EXPORT_SYMBOL(blk_start_queue_async);
**/
void blk_start_queue(struct request_queue *q)
{
- WARN_ON(!in_interrupt() && !irqs_disabled());
+ WARN_ON_NONRT(!in_interrupt() && !irqs_disabled());
queue_flag_clear(QUEUE_FLAG_STOPPED, q);
__blk_run_queue(q);
--
2.15.0