.. | .. |
---|
13 | 13 | HK_FLAG_TICK = (1 << 4), |
---|
14 | 14 | HK_FLAG_DOMAIN = (1 << 5), |
---|
15 | 15 | HK_FLAG_WQ = (1 << 6), |
---|
| 16 | + HK_FLAG_MANAGED_IRQ = (1 << 7), |
---|
| 17 | + HK_FLAG_KTHREAD = (1 << 8), |
---|
16 | 18 | }; |
---|
17 | 19 | |
---|
18 | 20 | #ifdef CONFIG_CPU_ISOLATION |
---|
19 | | -DECLARE_STATIC_KEY_FALSE(housekeeping_overriden); |
---|
| 21 | +DECLARE_STATIC_KEY_FALSE(housekeeping_overridden); |
---|
20 | 22 | extern int housekeeping_any_cpu(enum hk_flags flags); |
---|
21 | 23 | extern const struct cpumask *housekeeping_cpumask(enum hk_flags flags); |
---|
| 24 | +extern bool housekeeping_enabled(enum hk_flags flags); |
---|
22 | 25 | extern void housekeeping_affine(struct task_struct *t, enum hk_flags flags); |
---|
23 | 26 | extern bool housekeeping_test_cpu(int cpu, enum hk_flags flags); |
---|
24 | 27 | extern void __init housekeeping_init(void); |
---|
.. | .. |
---|
35 | 38 | return cpu_possible_mask; |
---|
36 | 39 | } |
---|
37 | 40 | |
---|
| 41 | +static inline bool housekeeping_enabled(enum hk_flags flags) |
---|
| 42 | +{ |
---|
| 43 | + return false; |
---|
| 44 | +} |
---|
| 45 | + |
---|
38 | 46 | static inline void housekeeping_affine(struct task_struct *t, |
---|
39 | 47 | enum hk_flags flags) { } |
---|
40 | 48 | static inline void housekeeping_init(void) { } |
---|
.. | .. |
---|
43 | 51 | static inline bool housekeeping_cpu(int cpu, enum hk_flags flags) |
---|
44 | 52 | { |
---|
45 | 53 | #ifdef CONFIG_CPU_ISOLATION |
---|
46 | | - if (static_branch_unlikely(&housekeeping_overriden)) |
---|
| 54 | + if (static_branch_unlikely(&housekeeping_overridden)) |
---|
47 | 55 | return housekeeping_test_cpu(cpu, flags); |
---|
48 | 56 | #endif |
---|
49 | 57 | return true; |
---|