forked from rrcarlosr/Jetpack
29 lines
848 B
Diff
29 lines
848 B
Diff
From 4d8e07666db70f488046a3ee55f566585a39dd6f Mon Sep 17 00:00:00 2001
|
|
From: Thomas Gleixner <tglx@linutronix.de>
|
|
Date: Tue, 14 Jun 2011 17:05:09 +0200
|
|
Subject: [PATCH 202/352] 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>
|
|
---
|
|
block/blk-core.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/block/blk-core.c b/block/blk-core.c
|
|
index ce60288..14e305d 100644
|
|
--- a/block/blk-core.c
|
|
+++ b/block/blk-core.c
|
|
@@ -235,7 +235,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.7.4
|
|
|