Commit fa899763 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] dm: Use wake_up() rather than wake_up_interruptible()

From: Kevin Corry <kevcorry@us.ibm.com>

dm.c: Use wake_up() rather than wake_up_interruptible() with the eventq.
parent 2daba222
......@@ -748,7 +748,7 @@ static void event_callback(void *context)
down_write(&md->lock);
md->event_nr++;
wake_up_interruptible(&md->eventq);
wake_up(&md->eventq);
up_write(&md->lock);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment