]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - linux/wait.c
Disable pristine-tar option in gbp.conf, since there is no pristine-tar branch.
[bcachefs-tools-debian] / linux / wait.c
index 991875c5f760b0f052ca521f617b54d22f5d040f..b1f002b99f9fd699864094ccf6850f8a2fa1d596 100644 (file)
@@ -66,6 +66,11 @@ void wake_up(wait_queue_head_t *q)
        __wake_up(q, TASK_NORMAL, 1, NULL);
 }
 
+void wake_up_all(wait_queue_head_t *q)
+{
+       __wake_up(q, TASK_NORMAL, 0, NULL);
+}
+
 static void __wake_up_locked(wait_queue_head_t *q, unsigned int mode, int nr)
 {
        __wake_up_common(q, mode, nr, 0, NULL);