]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - include/linux/wait.h
New upstream release
[bcachefs-tools-debian] / include / linux / wait.h
index c3d982421883ac640a56c5005a6d467502b5e86e..d1d33e67d9e812d73dc79ec96bcbb9e6e0d99f6f 100644 (file)
@@ -90,6 +90,7 @@ do {                                                                  \
        __wait_event(wq, condition);                                    \
 } while (0)
 
+#define wait_event_freezable(wq, condition)    ({wait_event(wq, condition); 0; })
 #define wait_event_killable(wq, condition)     ({wait_event(wq, condition); 0; })
 #define wait_event_interruptible(wq, condition)        ({wait_event(wq, condition); 0; })