isolation.h 1.3 KB
Newer Older
1 2 3 4 5 6 7
#ifndef _LINUX_SCHED_ISOLATION_H
#define _LINUX_SCHED_ISOLATION_H

#include <linux/cpumask.h>
#include <linux/init.h>
#include <linux/tick.h>

8 9 10 11 12
enum hk_flags {
	HK_FLAG_TIMER		= 1,
	HK_FLAG_RCU		= (1 << 1),
	HK_FLAG_MISC		= (1 << 2),
	HK_FLAG_SCHED		= (1 << 3),
13
	HK_FLAG_TICK		= (1 << 4),
14 15
};

16
#ifdef CONFIG_CPU_ISOLATION
17
DECLARE_STATIC_KEY_FALSE(housekeeping_overriden);
18 19 20 21
extern int housekeeping_any_cpu(enum hk_flags flags);
extern const struct cpumask *housekeeping_cpumask(enum hk_flags flags);
extern void housekeeping_affine(struct task_struct *t, enum hk_flags flags);
extern bool housekeeping_test_cpu(int cpu, enum hk_flags flags);
22
extern void __init housekeeping_init(void);
23

24 25
#else

26
static inline int housekeeping_any_cpu(enum hk_flags flags)
27 28 29 30
{
	return smp_processor_id();
}

31
static inline const struct cpumask *housekeeping_cpumask(enum hk_flags flags)
32 33 34 35
{
	return cpu_possible_mask;
}

36 37
static inline void housekeeping_affine(struct task_struct *t,
				       enum hk_flags flags) { }
38
static inline void housekeeping_init(void) { }
39
#endif /* CONFIG_CPU_ISOLATION */
40

41
static inline bool housekeeping_cpu(int cpu, enum hk_flags flags)
42
{
43
#ifdef CONFIG_CPU_ISOLATION
44
	if (static_branch_unlikely(&housekeeping_overriden))
45
		return housekeeping_test_cpu(cpu, flags);
46 47 48 49 50
#endif
	return true;
}

#endif /* _LINUX_SCHED_ISOLATION_H */