Merge tag 'i2c-for-6.4-rc1-part2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / kernel / sched / cpudeadline.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
6bfd6d72 2
97fb7a0a 3#define IDX_INVALID -1
6bfd6d72 4
944770ab 5struct cpudl_item {
97fb7a0a
IM
6 u64 dl;
7 int cpu;
8 int idx;
6bfd6d72
JL
9};
10
11struct cpudl {
97fb7a0a
IM
12 raw_spinlock_t lock;
13 int size;
14 cpumask_var_t free_cpus;
15 struct cpudl_item *elements;
6bfd6d72
JL
16};
17
6bfd6d72 18#ifdef CONFIG_SMP
97fb7a0a 19int cpudl_find(struct cpudl *cp, struct task_struct *p, struct cpumask *later_mask);
d8206bb3
TC
20void cpudl_set(struct cpudl *cp, int cpu, u64 dl);
21void cpudl_clear(struct cpudl *cp, int cpu);
97fb7a0a 22int cpudl_init(struct cpudl *cp);
16b26943
XP
23void cpudl_set_freecpu(struct cpudl *cp, int cpu);
24void cpudl_clear_freecpu(struct cpudl *cp, int cpu);
6bfd6d72 25void cpudl_cleanup(struct cpudl *cp);
6bfd6d72 26#endif /* CONFIG_SMP */