1 // SPDX-License-Identifier: GPL-2.0
5 #include <linux/freezer.h>
6 #include <linux/kthread.h>
7 #include <linux/preempt.h>
9 static inline bool io_timer_cmp(const void *l, const void *r, void __always_unused *args)
11 struct io_timer **_l = (struct io_timer **)l;
12 struct io_timer **_r = (struct io_timer **)r;
14 return (*_l)->expire < (*_r)->expire;
17 static const struct min_heap_callbacks callbacks = {
22 void bch2_io_timer_add(struct io_clock *clock, struct io_timer *timer)
24 spin_lock(&clock->timer_lock);
26 if (time_after_eq64((u64) atomic64_read(&clock->now), timer->expire)) {
27 spin_unlock(&clock->timer_lock);
32 for (size_t i = 0; i < clock->timers.nr; i++)
33 if (clock->timers.data[i] == timer)
36 BUG_ON(!min_heap_push(&clock->timers, &timer, &callbacks, NULL));
38 spin_unlock(&clock->timer_lock);
41 void bch2_io_timer_del(struct io_clock *clock, struct io_timer *timer)
43 spin_lock(&clock->timer_lock);
45 for (size_t i = 0; i < clock->timers.nr; i++)
46 if (clock->timers.data[i] == timer) {
47 min_heap_del(&clock->timers, i, &callbacks, NULL);
51 spin_unlock(&clock->timer_lock);
54 struct io_clock_wait {
55 struct io_timer io_timer;
56 struct timer_list cpu_timer;
57 struct task_struct *task;
61 static void io_clock_wait_fn(struct io_timer *timer)
63 struct io_clock_wait *wait = container_of(timer,
64 struct io_clock_wait, io_timer);
67 wake_up_process(wait->task);
70 static void io_clock_cpu_timeout(struct timer_list *timer)
72 struct io_clock_wait *wait = container_of(timer,
73 struct io_clock_wait, cpu_timer);
76 wake_up_process(wait->task);
79 void bch2_io_clock_schedule_timeout(struct io_clock *clock, u64 until)
81 struct io_clock_wait wait = {
82 .io_timer.expire = until,
83 .io_timer.fn = io_clock_wait_fn,
84 .io_timer.fn2 = (void *) _RET_IP_,
88 bch2_io_timer_add(clock, &wait.io_timer);
90 bch2_io_timer_del(clock, &wait.io_timer);
93 void bch2_kthread_io_clock_wait(struct io_clock *clock,
94 u64 io_until, unsigned long cpu_timeout)
96 bool kthread = (current->flags & PF_KTHREAD) != 0;
97 struct io_clock_wait wait = {
98 .io_timer.expire = io_until,
99 .io_timer.fn = io_clock_wait_fn,
100 .io_timer.fn2 = (void *) _RET_IP_,
104 bch2_io_timer_add(clock, &wait.io_timer);
106 timer_setup_on_stack(&wait.cpu_timer, io_clock_cpu_timeout, 0);
108 if (cpu_timeout != MAX_SCHEDULE_TIMEOUT)
109 mod_timer(&wait.cpu_timer, cpu_timeout + jiffies);
112 set_current_state(TASK_INTERRUPTIBLE);
113 if (kthread && kthread_should_stop())
123 __set_current_state(TASK_RUNNING);
124 del_timer_sync(&wait.cpu_timer);
125 destroy_timer_on_stack(&wait.cpu_timer);
126 bch2_io_timer_del(clock, &wait.io_timer);
129 static struct io_timer *get_expired_timer(struct io_clock *clock, u64 now)
131 struct io_timer *ret = NULL;
133 if (clock->timers.nr &&
134 time_after_eq64(now, clock->timers.data[0]->expire)) {
135 ret = *min_heap_peek(&clock->timers);
136 min_heap_pop(&clock->timers, &callbacks, NULL);
142 void __bch2_increment_clock(struct io_clock *clock, u64 sectors)
144 struct io_timer *timer;
145 u64 now = atomic64_add_return(sectors, &clock->now);
147 spin_lock(&clock->timer_lock);
148 while ((timer = get_expired_timer(clock, now)))
150 spin_unlock(&clock->timer_lock);
153 void bch2_io_timers_to_text(struct printbuf *out, struct io_clock *clock)
156 spin_lock(&clock->timer_lock);
157 u64 now = atomic64_read(&clock->now);
159 printbuf_tabstop_push(out, 40);
160 prt_printf(out, "current time:\t%llu\n", now);
162 for (unsigned i = 0; i < clock->timers.nr; i++)
163 prt_printf(out, "%ps %ps:\t%llu\n",
164 clock->timers.data[i]->fn,
165 clock->timers.data[i]->fn2,
166 clock->timers.data[i]->expire);
167 spin_unlock(&clock->timer_lock);
171 void bch2_io_clock_exit(struct io_clock *clock)
173 free_heap(&clock->timers);
174 free_percpu(clock->pcpu_buf);
177 int bch2_io_clock_init(struct io_clock *clock)
179 atomic64_set(&clock->now, 0);
180 spin_lock_init(&clock->timer_lock);
182 clock->max_slop = IO_CLOCK_PCPU_SECTORS * num_possible_cpus();
184 clock->pcpu_buf = alloc_percpu(*clock->pcpu_buf);
185 if (!clock->pcpu_buf)
186 return -BCH_ERR_ENOMEM_io_clock_init;
188 if (!init_heap(&clock->timers, NR_IO_TIMERS, GFP_KERNEL))
189 return -BCH_ERR_ENOMEM_io_clock_init;