aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Sun <[email protected]>2024-07-21 08:43:24 -0400
committerKent Overstreet <[email protected]>2024-09-09 09:41:48 -0400
commit23fcd5f40aeff17e7a97d5fd24e0303799f6ece7 (patch)
treeafa77f265cf55fb915dd72b28601a821fd6de915
parent668c95515580be9f10b58dcd64cc28c03a733da8 (diff)
bcachefs: remove the unused macro definition
macro bch2_kthread_wait_event_ioclock_timeout is no longer used, let's remove it. The patch has passed compilation test. Signed-off-by: Julian Sun <[email protected]> Signed-off-by: Kent Overstreet <[email protected]>
-rw-r--r--fs/bcachefs/clock.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/fs/bcachefs/clock.h b/fs/bcachefs/clock.h
index 85c975dfbcfe..82c79c8baf92 100644
--- a/fs/bcachefs/clock.h
+++ b/fs/bcachefs/clock.h
@@ -20,15 +20,6 @@ static inline void bch2_increment_clock(struct bch_fs *c, u64 sectors,
void bch2_io_clock_schedule_timeout(struct io_clock *, u64);
-#define bch2_kthread_wait_event_ioclock_timeout(condition, clock, timeout)\
-({ \
- long __ret = timeout; \
- might_sleep(); \
- if (!___wait_cond_timeout(condition)) \
- __ret = __wait_event_timeout(wq, condition, timeout); \
- __ret; \
-})
-
void bch2_io_timers_to_text(struct printbuf *, struct io_clock *);
void bch2_io_clock_exit(struct io_clock *);