forked from rrcarlosr/Jetpack
33 lines
1001 B
Diff
33 lines
1001 B
Diff
From 6738e1457588fc5917c0746d0ce6bafc70689a5e Mon Sep 17 00:00:00 2001
|
|
From: Thomas Gleixner <tglx@linutronix.de>
|
|
Date: Mon, 14 Nov 2011 23:06:09 +0100
|
|
Subject: [PATCH 275/352] dm: Make rt aware
|
|
|
|
Use the BUG_ON_NORT variant for the irq_disabled() checks. RT has
|
|
interrupts legitimately enabled here as we cant deadlock against the
|
|
irq thread due to the "sleeping spinlocks" conversion.
|
|
|
|
Reported-by: Luis Claudio R. Goncalves <lclaudio@uudg.org>
|
|
|
|
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
|
|
---
|
|
drivers/md/dm-rq.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/md/dm-rq.c b/drivers/md/dm-rq.c
|
|
index ba7c4c6..834ec32 100644
|
|
--- a/drivers/md/dm-rq.c
|
|
+++ b/drivers/md/dm-rq.c
|
|
@@ -842,7 +842,7 @@ static void dm_old_request_fn(struct request_queue *q)
|
|
/* Establish tio->ti before queuing work (map_tio_request) */
|
|
tio->ti = ti;
|
|
kthread_queue_work(&md->kworker, &tio->work);
|
|
- BUG_ON(!irqs_disabled());
|
|
+ BUG_ON_NONRT(!irqs_disabled());
|
|
}
|
|
}
|
|
|
|
--
|
|
2.7.4
|
|
|