Lines Matching refs:flags

24 	unsigned long flags;  member
31 return !!(housekeeping.flags & BIT(type)); in housekeeping_enabled()
40 if (housekeeping.flags & BIT(type)) { in housekeeping_any_cpu()
64 if (housekeeping.flags & BIT(type)) in housekeeping_cpumask()
73 if (housekeeping.flags & BIT(type)) in housekeeping_affine()
81 if (housekeeping.flags & BIT(type)) in housekeeping_test_cpu()
91 if (!housekeeping.flags) in housekeeping_init()
96 if (housekeeping.flags & HK_FLAG_KERNEL_NOISE) in housekeeping_init()
99 for_each_set_bit(type, &housekeeping.flags, HK_TYPE_MAX) { in housekeeping_init()
114 static int __init housekeeping_setup(char *str, unsigned long flags) in housekeeping_setup() argument
120 if ((flags & HK_FLAG_KERNEL_NOISE) && !(housekeeping.flags & HK_FLAG_KERNEL_NOISE)) { in housekeeping_setup()
142 if (!housekeeping.flags) { in housekeeping_setup()
151 if (!housekeeping.flags) { in housekeeping_setup()
155 for_each_set_bit(type, &flags, HK_TYPE_MAX) in housekeeping_setup()
160 unsigned long iter_flags = flags & housekeeping.flags; in housekeeping_setup()
170 iter_flags = flags & ~housekeeping.flags; in housekeeping_setup()
176 if ((flags & HK_FLAG_KERNEL_NOISE) && !(housekeeping.flags & HK_FLAG_KERNEL_NOISE)) in housekeeping_setup()
179 housekeeping.flags |= flags; in housekeeping_setup()
192 unsigned long flags; in housekeeping_nohz_full_setup() local
194 flags = HK_FLAG_KERNEL_NOISE; in housekeeping_nohz_full_setup()
196 return housekeeping_setup(str, flags); in housekeeping_nohz_full_setup()
202 unsigned long flags = 0; in housekeeping_isolcpus_setup() local
213 flags |= HK_FLAG_KERNEL_NOISE; in housekeeping_isolcpus_setup()
219 flags |= HK_FLAG_DOMAIN; in housekeeping_isolcpus_setup()
225 flags |= HK_FLAG_MANAGED_IRQ; in housekeeping_isolcpus_setup()
248 if (!flags) in housekeeping_isolcpus_setup()
249 flags |= HK_FLAG_DOMAIN; in housekeeping_isolcpus_setup()
251 return housekeeping_setup(str, flags); in housekeeping_isolcpus_setup()