drm/panfrost: Remove set but not used variable 'bo'
[linux/fpc-iii.git] / kernel / sched / cpupri.h
blob32dd520db11f9fe048e43dc9c5144dac23ea6c83
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define CPUPRI_NR_PRIORITIES (MAX_RT_PRIO + 2)
5 #define CPUPRI_INVALID -1
6 #define CPUPRI_IDLE 0
7 #define CPUPRI_NORMAL 1
8 /* values 2-101 are RT priorities 0-99 */
10 struct cpupri_vec {
11 atomic_t count;
12 cpumask_var_t mask;
15 struct cpupri {
16 struct cpupri_vec pri_to_cpu[CPUPRI_NR_PRIORITIES];
17 int *cpu_to_pri;
20 #ifdef CONFIG_SMP
21 int cpupri_find(struct cpupri *cp, struct task_struct *p,
22 struct cpumask *lowest_mask,
23 bool (*fitness_fn)(struct task_struct *p, int cpu));
24 void cpupri_set(struct cpupri *cp, int cpu, int pri);
25 int cpupri_init(struct cpupri *cp);
26 void cpupri_cleanup(struct cpupri *cp);
27 #endif