2019-07-10 23:12:15 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2017-10-06 01:41:44 +03:00
|
|
|
#ifndef _BCACHEFS_CLOCK_TYPES_H
|
|
|
|
#define _BCACHEFS_CLOCK_TYPES_H
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
2018-04-11 02:19:09 +03:00
|
|
|
#define NR_IO_TIMERS (BCH_SB_MEMBERS_MAX * 3)
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clocks/timers in units of sectors of IO:
|
|
|
|
*
|
|
|
|
* Note - they use percpu batching, so they're only approximate.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct io_timer;
|
|
|
|
typedef void (*io_timer_fn)(struct io_timer *);
|
|
|
|
|
|
|
|
struct io_timer {
|
|
|
|
io_timer_fn fn;
|
2024-07-05 16:14:14 +03:00
|
|
|
void *fn2;
|
|
|
|
u64 expire;
|
2017-01-08 12:13:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Amount to buffer up on a percpu counter */
|
|
|
|
#define IO_CLOCK_PCPU_SECTORS 128
|
|
|
|
|
2017-04-24 08:56:57 +03:00
|
|
|
typedef HEAP(struct io_timer *) io_timer_heap;
|
|
|
|
|
2017-01-08 12:13:18 +03:00
|
|
|
struct io_clock {
|
2021-02-02 22:26:28 +03:00
|
|
|
atomic64_t now;
|
2017-01-08 12:13:18 +03:00
|
|
|
u16 __percpu *pcpu_buf;
|
2019-12-29 02:19:05 +03:00
|
|
|
unsigned max_slop;
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
spinlock_t timer_lock;
|
2017-04-24 08:56:57 +03:00
|
|
|
io_timer_heap timers;
|
2017-01-08 12:13:18 +03:00
|
|
|
};
|
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#endif /* _BCACHEFS_CLOCK_TYPES_H */
|