summaryrefslogtreecommitdiff
path: root/include/linux/wait.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2021-04-15 13:05:38 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2021-04-19 21:26:48 -0400
commitceac31bcb6992cb8b7770d2a0e91b055e5020431 (patch)
tree77a66249069a2de7bafdcec5afbce387059d0bf9 /include/linux/wait.h
parent8ba5e814fd3d0e9559adca72f73202a7dc304acc (diff)
Update bcachefs sources to fe72e70682 bcachefs: Fix for btree_gc repairing interior btree ptrs
Diffstat (limited to 'include/linux/wait.h')
-rw-r--r--include/linux/wait.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/wait.h b/include/linux/wait.h
index c3d98242..d1d33e67 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -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; })