dm.c: Use wake_up() rather than wake_up_interruptible() with the
eventq.
--- diff/drivers/md/dm.c	2004-04-07 11:32:23.376959744 +0100
+++ source/drivers/md/dm.c	2004-04-07 11:32:25.212680672 +0100
@@ -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);
 }
 
