Symbol: static_key_true
arch/powerpc/include/asm/cpu_has_feature.h
21
extern struct static_key_true cpu_feature_keys[NUM_CPU_FTR_KEYS];
arch/powerpc/include/asm/mmu.h
234
extern struct static_key_true mmu_feature_keys[NUM_MMU_FTR_KEYS];
arch/powerpc/kernel/cputable.c
149
struct static_key_true cpu_feature_keys[NUM_CPU_FTR_KEYS] = {
arch/powerpc/kernel/cputable.c
166
struct static_key_true mmu_feature_keys[NUM_MMU_FTR_KEYS] = {
include/linux/cgroup.h
97
extern struct static_key_true _x ## _cgrp_subsys_enabled_key; \
include/linux/cgroup.h
98
extern struct static_key_true _x ## _cgrp_subsys_on_dfl_key;
include/linux/dynamic_debug.h
56
struct static_key_true dd_key_true;
include/linux/jump_label.h
359
#define STATIC_KEY_TRUE_INIT (struct static_key_true) { .key = STATIC_KEY_INIT_TRUE, }
include/linux/jump_label.h
363
struct static_key_true name = STATIC_KEY_TRUE_INIT
include/linux/jump_label.h
366
struct static_key_true name __ro_after_init = STATIC_KEY_TRUE_INIT
include/linux/jump_label.h
369
extern struct static_key_true name
include/linux/jump_label.h
381
struct static_key_true name[count] = { \
include/linux/jump_label.h
410
!__builtin_types_compatible_p(typeof(*x), struct static_key_true) &&\
include/linux/jump_label.h
477
if (__builtin_types_compatible_p(typeof(*x), struct static_key_true)) \
include/linux/jump_label.h
489
if (__builtin_types_compatible_p(typeof(*x), struct static_key_true)) \
include/linux/jump_label_ratelimit.h
16
struct static_key_true key;
include/linux/jump_label_ratelimit.h
68
struct static_key_true key;
include/linux/once.h
12
void __do_once_done(bool *done, struct static_key_true *once_key,
include/linux/once.h
17
void __do_once_sleepable_done(bool *done, struct static_key_true *once_key,
include/linux/page_table_check.h
13
extern struct static_key_true page_table_check_disabled;
kernel/cgroup/cgroup.c
164
static struct static_key_true *cgroup_subsys_enabled_key[] = {
kernel/cgroup/cgroup.c
170
static struct static_key_true *cgroup_subsys_on_dfl_key[] = {
lib/once.c
10
struct static_key_true *key;
lib/once.c
25
static void once_disable_jump(struct static_key_true *key, struct module *mod)
lib/once.c
60
void __do_once_done(bool *done, struct static_key_true *once_key,
lib/once.c
90
void __do_once_sleepable_done(bool *done, struct static_key_true *once_key,
lib/test_static_keys.c
29
extern struct static_key_true base_true_key;
lib/test_static_keys.c
30
extern struct static_key_true base_inv_true_key;
lib/test_static_keys.c
90
test_key_func(old_true_key, static_key_true)
lib/test_static_keys.c
96
test_key_func(base_old_true_key, static_key_true)
lib/test_static_keys.c
97
test_key_func(base_inv_old_true_key, static_key_true)