33 lines
1012 B
Diff
33 lines
1012 B
Diff
From 1c57ed19a228bf7012474b9008f61e606f30c26f Mon Sep 17 00:00:00 2001
|
|
From: Thomas Gleixner <tglx@linutronix.de>
|
|
Date: Mon, 14 Nov 2011 23:06:09 +0100
|
|
Subject: [PATCH 272/365] 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 ba7c4c685db3..834ec328f217 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.28.0
|
|
|