Searched refs:ATOMIC_INIT (Results 1 – 25 of 274) sorted by relevance
1234567891011
| /Linux-v5.4/arch/s390/kernel/ |
| D | perf_cpum_cf_common.c | 24 [CPUMF_CTR_SET_BASIC] = ATOMIC_INIT(0), 25 [CPUMF_CTR_SET_USER] = ATOMIC_INIT(0), 26 [CPUMF_CTR_SET_CRYPTO] = ATOMIC_INIT(0), 27 [CPUMF_CTR_SET_EXT] = ATOMIC_INIT(0), 28 [CPUMF_CTR_SET_MT_DIAG] = ATOMIC_INIT(0),
|
| /Linux-v5.4/mm/ |
| D | init-mm.c | 32 .mm_users = ATOMIC_INIT(2), 33 .mm_count = ATOMIC_INIT(1),
|
| /Linux-v5.4/arch/openrisc/kernel/ |
| D | sync-timer.c | 25 static atomic_t count_count_start = ATOMIC_INIT(0); 26 static atomic_t count_count_stop = ATOMIC_INIT(0);
|
| /Linux-v5.4/arch/mips/kernel/ |
| D | sync-r4k.c | 22 static atomic_t count_count_start = ATOMIC_INIT(0); 23 static atomic_t count_count_stop = ATOMIC_INIT(0);
|
| /Linux-v5.4/fs/fscache/ |
| D | fsdef.c | 48 .usage = ATOMIC_INIT(1), 49 .n_active = ATOMIC_INIT(1),
|
| /Linux-v5.4/kernel/ |
| D | user.c | 58 .count = ATOMIC_INIT(3), 101 .processes = ATOMIC_INIT(1), 102 .sigpending = ATOMIC_INIT(0),
|
| /Linux-v5.4/include/asm-generic/ |
| D | qrwlock_types.h | 30 { .cnts = ATOMIC_INIT(0), }, \
|
| D | qspinlock_types.h | 57 #define __ARCH_SPIN_LOCK_UNLOCKED { { .val = ATOMIC_INIT(0) } }
|
| /Linux-v5.4/include/linux/ |
| D | osq_lock.h | 26 #define OSQ_LOCK_UNLOCKED { ATOMIC_INIT(OSQ_UNLOCKED_VAL) }
|
| D | fault-inject.h | 36 .times = ATOMIC_INIT(1), \
|
| /Linux-v5.4/arch/sh/include/asm/ |
| D | atomic.h | 22 #define ATOMIC_INIT(i) { (i) } macro
|
| /Linux-v5.4/tools/arch/x86/include/asm/ |
| D | atomic.h | 18 #define ATOMIC_INIT(i) { (i) } macro
|
| /Linux-v5.4/tools/include/asm-generic/ |
| D | atomic-gcc.h | 15 #define ATOMIC_INIT(i) { (i) } macro
|
| /Linux-v5.4/drivers/ras/ |
| D | debugfs.c | 8 static atomic_t trace_count = ATOMIC_INIT(0);
|
| /Linux-v5.4/arch/sparc/include/asm/ |
| D | atomic_32.h | 21 #define ATOMIC_INIT(i) { (i) } macro
|
| /Linux-v5.4/arch/arm64/include/asm/ |
| D | atomic.h | 102 #define ATOMIC_INIT(i) { (i) } macro 170 #define ATOMIC64_INIT ATOMIC_INIT
|
| /Linux-v5.4/net/netfilter/ipvs/ |
| D | ip_vs_fo.c | 55 .refcnt = ATOMIC_INIT(0),
|
| D | ip_vs_lc.c | 68 .refcnt = ATOMIC_INIT(0),
|
| D | ip_vs_ovf.c | 62 .refcnt = ATOMIC_INIT(0),
|
| D | ip_vs_nq.c | 118 .refcnt = ATOMIC_INIT(0),
|
| D | ip_vs_sed.c | 119 .refcnt = ATOMIC_INIT(0),
|
| /Linux-v5.4/lib/ |
| D | dump_stack.c | 86 static atomic_t dump_lock = ATOMIC_INIT(-1);
|
| /Linux-v5.4/drivers/cpuidle/ |
| D | cpuidle-ux500.c | 20 static atomic_t master = ATOMIC_INIT(0);
|
| /Linux-v5.4/drivers/edac/ |
| D | edac_pci_sysfs.c | 26 static atomic_t pci_parity_count = ATOMIC_INIT(0); 27 static atomic_t pci_nonparity_count = ATOMIC_INIT(0); 30 static atomic_t edac_pci_sysfs_refcount = ATOMIC_INIT(0);
|
| /Linux-v5.4/tools/include/linux/ |
| D | refcount.h | 56 #define REFCOUNT_INIT(n) { .refs = ATOMIC_INIT(n), }
|
1234567891011