Searched refs:ATOMIC_INIT (Results 1 – 25 of 72) sorted by relevance
123
/linux-4.19.296/fs/fscache/ |
D | fsdef.c | 52 .usage = ATOMIC_INIT(1), 53 .n_active = ATOMIC_INIT(1),
|
/linux-4.19.296/include/asm-generic/ |
D | qrwlock_types.h | 30 { .cnts = ATOMIC_INIT(0), }, \
|
D | qspinlock_types.h | 66 #define __ARCH_SPIN_LOCK_UNLOCKED { { .val = ATOMIC_INIT(0) } }
|
D | atomic.h | 166 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.19.296/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), \
|
D | jump_label.h | 267 #define STATIC_KEY_INIT_TRUE { .enabled = ATOMIC_INIT(1) } 268 #define STATIC_KEY_INIT_FALSE { .enabled = ATOMIC_INIT(0) }
|
D | refcount.h | 23 #define REFCOUNT_INIT(n) { .refs = ATOMIC_INIT(n), }
|
D | interrupt.h | 552 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data } 555 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
|
D | sysctl.h | 106 .event = ATOMIC_INIT(0), \
|
/linux-4.19.296/drivers/ras/ |
D | debugfs.c | 5 static atomic_t trace_count = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/cpuidle/ |
D | cpuidle-ux500.c | 23 static atomic_t master = ATOMIC_INIT(0);
|
/linux-4.19.296/lib/ |
D | dump_stack.c | 86 static atomic_t dump_lock = ATOMIC_INIT(-1);
|
/linux-4.19.296/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-4.19.296/fs/coda/ |
D | cache.c | 28 static atomic_t permission_epoch = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/misc/cxl/ |
D | base.c | 20 atomic_t cxl_use_count = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/oprofile/ |
D | event_buffer.c | 36 static atomic_t buffer_ready = ATOMIC_INIT(0);
|
/linux-4.19.296/fs/notify/ |
D | notification.c | 51 static atomic_t fsnotify_sync_cookie = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/s390/cio/ |
D | crw.c | 22 static atomic_t crw_nr_req = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/cpufreq/ |
D | omap-cpufreq.c | 41 static atomic_t freq_table_users = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/char/ |
D | apm-emulation.c | 118 static atomic_t suspend_acks_pending = ATOMIC_INIT(0); 119 static atomic_t userspace_notification_inhibit = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/misc/ibmasm/ |
D | command.c | 32 static atomic_t command_count = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/media/radio/ |
D | radio-maxiradio.c | 64 static atomic_t maxiradio_instance = ATOMIC_INIT(0);
|
/linux-4.19.296/drivers/misc/lkdtm/ |
D | refcount.c | 363 atomic_t count = ATOMIC_INIT(1); in lkdtm_ATOMIC_TIMING()
|
/linux-4.19.296/drivers/char/ipmi/ |
D | ipmi_watchdog.c | 322 static atomic_t preop_panic_excl = ATOMIC_INIT(-1); 336 static atomic_t msg_tofree = ATOMIC_INIT(0); 456 static atomic_t panic_done_count = ATOMIC_INIT(0);
|
123