aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kacur <jkacur@redhat.com>2011-11-15 13:49:52 +0100
committerJohn Kacur <jkacur@redhat.com>2011-11-15 13:54:24 +0100
commit10203aa869f133664176836a9d1c07a82862ea3d (patch)
tree3d7d9510d0e76f655a64f15825f1af03c0afad75
parentfbe0a81f627233ba2e63db50bcfe17775f876a78 (diff)
downloadlinux-rt-v3.2-rc1-52e4c2a05-rt2.tar.gz
Fix typo in use of BUG_ON_NONRT macro for RTv3.2-rc1-52e4c2a05-rt2
In drivers/md/dm.c BUG_ON_NORT should be BUG_ON_NONRT Signed-off-by: John Kacur <jkacur@redhat.com>
-rw-r--r--drivers/md/dm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index e917b7f3f3df7..b1eff426c2fc2 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -1648,14 +1648,14 @@ static void dm_request_fn(struct request_queue *q)
if (map_request(ti, clone, md))
goto requeued;
- BUG_ON_NORT(!irqs_disabled());
+ BUG_ON_NONRT(!irqs_disabled());
spin_lock(q->queue_lock);
}
goto out;
requeued:
- BUG_ON_NORT(!irqs_disabled());
+ BUG_ON_NONRT(!irqs_disabled());
spin_lock(q->queue_lock);
delay_and_out: