/linux-4.1.27/arch/mips/kernel/ |
D | sync-r4k.c | 20 static atomic_t count_start_flag = ATOMIC_INIT(0); 21 static atomic_t count_count_start = ATOMIC_INIT(0); 22 static atomic_t count_count_stop = ATOMIC_INIT(0); 23 static atomic_t count_reference = ATOMIC_INIT(0);
|
D | machine_kexec.c | 27 atomic_t kexec_ready_to_reboot = ATOMIC_INIT(0);
|
/linux-4.1.27/include/linux/ |
D | jump_label.h | 149 { .enabled = ATOMIC_INIT(1), \ 152 { .enabled = ATOMIC_INIT(0), \ 202 { .enabled = ATOMIC_INIT(1) }) 204 { .enabled = ATOMIC_INIT(0) })
|
D | init_task.h | 65 .count = ATOMIC_INIT(1), \ 74 .count = ATOMIC_INIT(1), \ 193 .usage = ATOMIC_INIT(2), \
|
D | osq_lock.h | 25 #define OSQ_LOCK_UNLOCKED { ATOMIC_INIT(OSQ_UNLOCKED_VAL) }
|
D | fault-inject.h | 35 .times = ATOMIC_INIT(1), \
|
D | mutex.h | 110 { .count = ATOMIC_INIT(1) \
|
D | interrupt.h | 494 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data } 497 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
|
D | sysctl.h | 98 .event = ATOMIC_INIT(0), \
|
/linux-4.1.27/kernel/ |
D | user.c | 50 .count = ATOMIC_INIT(3), 92 .__count = ATOMIC_INIT(1), 93 .processes = ATOMIC_INIT(1), 94 .sigpending = ATOMIC_INIT(0),
|
D | freezer.c | 15 atomic_t system_freezing_cnt = ATOMIC_INIT(0);
|
D | hung_task.c | 214 static atomic_t reset_hung_task = ATOMIC_INIT(0);
|
D | cred.c | 33 struct group_info init_groups = { .usage = ATOMIC_INIT(2) }; 39 .usage = ATOMIC_INIT(4), 41 .subscribers = ATOMIC_INIT(2),
|
D | kmod.c | 131 static atomic_t kmod_concurrent = ATOMIC_INIT(0); in __request_module() 335 static atomic_t running_helpers = ATOMIC_INIT(0);
|
D | pid.c | 72 .refcount = ATOMIC_INIT(2), 75 [ 0 ... PIDMAP_ENTRIES-1] = { ATOMIC_INIT(BITS_PER_PAGE), NULL }
|
D | nsproxy.c | 32 .count = ATOMIC_INIT(1),
|
D | smpboot.c | 319 static DEFINE_PER_CPU(atomic_t, cpu_hotplug_state) = ATOMIC_INIT(CPU_POST_DEAD);
|
D | audit.c | 127 static atomic_t audit_lost = ATOMIC_INIT(0); 1296 static atomic_t serial = ATOMIC_INIT(0); in audit_serial()
|
/linux-4.1.27/mm/ |
D | init-mm.c | 19 .mm_users = ATOMIC_INIT(2), 20 .mm_count = ATOMIC_INIT(1),
|
D | swap_state.c | 38 .i_mmap_writable = ATOMIC_INIT(0), 62 static atomic_t swapin_readahead_hits = ATOMIC_INIT(4);
|
D | oom_kill.c | 404 static atomic_t oom_victims = ATOMIC_INIT(0);
|
D | zswap.c | 51 static atomic_t zswap_stored_pages = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/edac/ |
D | edac_stub.c | 24 atomic_t edac_handlers = ATOMIC_INIT(0); 30 static atomic_t edac_subsys_valid = ATOMIC_INIT(0);
|
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);
|
D | edac_pci.c | 32 static atomic_t pci_indexes = ATOMIC_INIT(0);
|
D | edac_device.c | 477 static atomic_t device_indexes = ATOMIC_INIT(0); in edac_device_alloc_index()
|
/linux-4.1.27/fs/fscache/ |
D | fsdef.c | 57 .usage = ATOMIC_INIT(1), 58 .n_active = ATOMIC_INIT(1),
|
D | cookie.c | 22 static atomic_t fscache_object_debug_id = ATOMIC_INIT(0);
|
/linux-4.1.27/net/sunrpc/ |
D | auth_null.c | 120 .au_count = ATOMIC_INIT(0), 139 .cr_count = ATOMIC_INIT(1),
|
D | auth_unix.c | 235 .au_count = ATOMIC_INIT(0),
|
D | auth_generic.c | 268 .au_count = ATOMIC_INIT(0),
|
/linux-4.1.27/arch/s390/kernel/ |
D | perf_cpum_cf.c | 78 [CPUMF_CTR_SET_BASIC] = ATOMIC_INIT(0), 79 [CPUMF_CTR_SET_USER] = ATOMIC_INIT(0), 80 [CPUMF_CTR_SET_CRYPTO] = ATOMIC_INIT(0), 81 [CPUMF_CTR_SET_EXT] = ATOMIC_INIT(0), 219 static atomic_t num_events = ATOMIC_INIT(0);
|
D | topology.c | 314 static atomic_t topology_poll = ATOMIC_INIT(0);
|
/linux-4.1.27/include/asm-generic/ |
D | qrwlock_types.h | 17 .cnts = ATOMIC_INIT(0), \
|
D | atomic.h | 120 #define ATOMIC_INIT(i) { (i) } macro
|
D | atomic-long.h | 143 #define ATOMIC_LONG_INIT(i) ATOMIC_INIT(i)
|
/linux-4.1.27/arch/sh/kernel/ |
D | ftrace.c | 94 static atomic_t nmi_running = ATOMIC_INIT(0); 100 static atomic_t nmi_update_count = ATOMIC_INIT(0);
|
/linux-4.1.27/ipc/ |
D | msgutil.c | 32 .count = ATOMIC_INIT(1), 40 atomic_t nr_ipc_ns = ATOMIC_INIT(1);
|
/linux-4.1.27/lib/ |
D | dump_stack.c | 24 static atomic_t dump_lock = ATOMIC_INIT(-1);
|
/linux-4.1.27/init/ |
D | version.c | 27 .refcount = ATOMIC_INIT(2),
|
/linux-4.1.27/arch/arm/mach-imx/ |
D | cpuidle-imx6q.c | 17 static atomic_t master = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/x86/kernel/ |
D | tracepoint.c | 11 atomic_t trace_idt_ctr = ATOMIC_INIT(0);
|
D | tboot.c | 111 .mm_users = ATOMIC_INIT(2), 112 .mm_count = ATOMIC_INIT(1),
|
D | smp.c | 113 static atomic_t stopping_cpu = ATOMIC_INIT(-1);
|
/linux-4.1.27/drivers/ras/ |
D | debugfs.c | 5 static atomic_t trace_count = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/sparc/include/asm/ |
D | atomic_32.h | 21 #define ATOMIC_INIT(i) { (i) } macro
|
D | atomic_64.h | 14 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/drivers/misc/cxl/ |
D | base.c | 19 atomic_t cxl_use_count = ATOMIC_INIT(0);
|
/linux-4.1.27/net/netfilter/ipvs/ |
D | ip_vs_fo.c | 60 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_lc.c | 73 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_wlc.c | 96 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_nq.c | 123 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_sed.c | 124 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_rr.c | 108 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_pe_sip.c | 149 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_dh.c | 250 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_wrr.c | 246 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_sh.c | 358 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_lblc.c | 541 .refcnt = ATOMIC_INIT(0),
|
D | ip_vs_lblcr.c | 727 .refcnt = ATOMIC_INIT(0),
|
/linux-4.1.27/drivers/cpuidle/ |
D | cpuidle-ux500.c | 23 static atomic_t master = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/staging/unisys/uislib/ |
D | uisutils.c | 39 atomic_t uisutils_registered_services = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/sh/include/asm/ |
D | atomic.h | 15 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/tile/include/asm/ |
D | atomic.h | 27 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/arm/mach-cns3xxx/ |
D | pm.c | 122 atomic_t usb_pwr_ref = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/ |
D | fail.c | 52 static atomic_t cfs_fail_count = ATOMIC_INIT(0); in __cfs_fail_check_set()
|
D | debug.c | 110 atomic_t libcfs_kmemory = ATOMIC_INIT(0);
|
D | tracefile.c | 58 static atomic_t cfs_tage_allocated = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/arm64/kernel/ |
D | efi.c | 46 .mm_users = ATOMIC_INIT(2), 47 .mm_count = ATOMIC_INIT(1),
|
D | insn.c | 230 .cpu_count = ATOMIC_INIT(0), in aarch64_insn_patch_text_sync()
|
/linux-4.1.27/fs/coda/ |
D | cache.c | 27 static atomic_t permission_epoch = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/metag/include/asm/ |
D | atomic_lnkget.h | 4 #define ATOMIC_INIT(i) { (i) } macro
|
D | atomic_lock1.h | 4 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/hexagon/include/asm/ |
D | atomic.h | 29 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/net/ipv6/netfilter/ |
D | nf_nat_masquerade_ipv6.c | 95 static atomic_t masquerade_notifier_refcount = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/x86/include/asm/ |
D | atomic.h | 17 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/um/drivers/ |
D | random.c | 45 static atomic_t host_sleep_count = ATOMIC_INIT(0);
|
D | port_kern.c | 193 .wait_count = ATOMIC_INIT(0), in port_data()
|
/linux-4.1.27/drivers/char/ipmi/ |
D | ipmi_watchdog.c | 338 static atomic_t preop_panic_excl = ATOMIC_INIT(-1); 353 static atomic_t set_timeout_tofree = ATOMIC_INIT(0); 473 static atomic_t panic_done_count = ATOMIC_INIT(0); 568 static atomic_t heartbeat_tofree = ATOMIC_INIT(0);
|
D | ipmi_poweroff.c | 107 static atomic_t dummy_count = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/mn10300/include/asm/ |
D | atomic.h | 27 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/net/ipv4/netfilter/ |
D | nf_nat_masquerade_ipv4.c | 126 static atomic_t masquerade_notifier_refcount = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/oprofile/ |
D | event_buffer.c | 36 static atomic_t buffer_ready = ATOMIC_INIT(0);
|
/linux-4.1.27/fs/notify/ |
D | notification.c | 51 static atomic_t fsnotify_sync_cookie = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/avr32/include/asm/ |
D | atomic.h | 20 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/powerpc/platforms/powermac/ |
D | backlight.c | 39 static atomic_t kernel_backlight_disabled = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/arc/include/asm/ |
D | atomic.h | 185 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/arm/mach-exynos/ |
D | pm.c | 195 static atomic_t cpu1_wakeup = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/m68k/mvme16x/ |
D | rtc.c | 35 static atomic_t rtc_ready = ATOMIC_INIT(1);
|
/linux-4.1.27/drivers/s390/cio/ |
D | crw.c | 20 static atomic_t crw_nr_req = ATOMIC_INIT(0);
|
D | chsc_sch.c | 919 static atomic_t chsc_ready_for_use = ATOMIC_INIT(1);
|
/linux-4.1.27/drivers/base/ |
D | dd.c | 55 static atomic_t deferred_trigger_count = ATOMIC_INIT(0); 275 static atomic_t probe_count = ATOMIC_INIT(0);
|
D | devcoredump.c | 236 static atomic_t devcd_count = ATOMIC_INIT(0); in dev_coredumpm()
|
/linux-4.1.27/arch/xtensa/include/asm/ |
D | atomic.h | 24 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/security/keys/ |
D | process_keys.c | 32 .usage = ATOMIC_INIT(3), 35 .nkeys = ATOMIC_INIT(2), 36 .nikeys = ATOMIC_INIT(2),
|
/linux-4.1.27/arch/m32r/include/asm/ |
D | atomic.h | 23 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/frv/include/asm/ |
D | atomic.h | 33 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/m68k/bvme6000/ |
D | rtc.c | 36 static atomic_t rtc_status = ATOMIC_INIT(1);
|
/linux-4.1.27/drivers/cpufreq/ |
D | omap-cpufreq.c | 38 static atomic_t freq_table_users = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/video/backlight/ |
D | apple_bl.c | 222 static atomic_t apple_bl_registered = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/char/ |
D | apm-emulation.c | 125 static atomic_t suspend_acks_pending = ATOMIC_INIT(0); 126 static atomic_t userspace_notification_inhibit = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/misc/ibmasm/ |
D | command.c | 32 static atomic_t command_count = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/media/radio/ |
D | radio-maxiradio.c | 64 static atomic_t maxiradio_instance = ATOMIC_INIT(0);
|
D | radio-shark2.c | 77 static atomic_t shark_instance = ATOMIC_INIT(0);
|
D | radio-shark.c | 82 static atomic_t shark_instance = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/mips/sgi-ip27/ |
D | ip27-nmi.c | 190 static atomic_t nmied_cpus = ATOMIC_INIT(0); in cont_nmi_dump()
|
/linux-4.1.27/arch/m68k/include/asm/ |
D | atomic.h | 18 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/powerpc/platforms/cell/spufs/ |
D | context.c | 34 atomic_t nr_spu_contexts = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/tty/ |
D | metag_da.c | 65 static atomic_t num_channels_need_poll = ATOMIC_INIT(0); 121 static atomic_t dashtty_xmit_cnt = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/x86/platform/uv/ |
D | uv_nmi.c | 74 static atomic_t uv_nmi_cpu = ATOMIC_INIT(-1); 75 static atomic_t uv_nmi_cpus_in_nmi = ATOMIC_INIT(-1);
|
/linux-4.1.27/drivers/sbus/char/ |
D | display7seg.c | 72 static atomic_t d7s_users = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/sparc/kernel/ |
D | nmi.c | 43 atomic_t nmi_active = ATOMIC_INIT(0); /* oprofile uses this */
|
D | smp_64.c | 1143 static atomic_t smp_capture_depth = ATOMIC_INIT(0); 1144 static atomic_t smp_capture_registry = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/ |
D | sec_gc.c | 63 static atomic_t sec_gc_wait_del = ATOMIC_INIT(0);
|
D | sec_null.c | 279 .sc_refcount = ATOMIC_INIT(1),
|
D | sec_plain.c | 706 .sc_refcount = ATOMIC_INIT(1),
|
D | sec.c | 116 static atomic_t loaded = ATOMIC_INIT(0); in sptlrpc_wireflavor2policy() 1195 static atomic_t sptlrpc_sec_id = ATOMIC_INIT(1);
|
/linux-4.1.27/fs/proc/ |
D | root.c | 254 .count = ATOMIC_INIT(1),
|
/linux-4.1.27/arch/alpha/include/asm/ |
D | atomic.h | 17 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/arm64/include/asm/ |
D | atomic.h | 29 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/sound/core/seq/ |
D | seq_device.c | 102 static atomic_t snd_seq_in_init = ATOMIC_INIT(1); /* blocked as default */
|
/linux-4.1.27/net/ieee802154/ |
D | core.c | 101 static atomic_t wpan_phy_counter = ATOMIC_INIT(0); in wpan_phy_new()
|
/linux-4.1.27/arch/ia64/include/asm/ |
D | atomic.h | 21 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/kernel/debug/ |
D | debug_core.c | 119 atomic_t kgdb_active = ATOMIC_INIT(-1); 140 atomic_t kgdb_cpu_doing_single_step = ATOMIC_INIT(-1);
|
/linux-4.1.27/arch/parisc/include/asm/ |
D | atomic.h | 155 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/drivers/watchdog/ |
D | wdrtas.c | 53 static atomic_t wdrtas_miscdev_open = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/s390/include/asm/ |
D | atomic.h | 21 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/drivers/tty/serial/ |
D | kgdb_nmi.c | 45 static atomic_t kgdb_nmi_num_readers = ATOMIC_INIT(0);
|
D | msm_serial.c | 1015 static atomic_t msm_uart_next_id = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/dma-buf/ |
D | fence.c | 38 static atomic_t fence_context_counter = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | atomic.h | 13 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/ia64/hp/sim/ |
D | simscsi.c | 72 static atomic_t num_reqs = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/staging/goldfish/ |
D | goldfish_audio.c | 112 static atomic_t open_count = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/um/kernel/ |
D | process.c | 267 static atomic_t using_sysemu = ATOMIC_INIT(0);
|
/linux-4.1.27/security/selinux/ |
D | xfrm.c | 56 atomic_t selinux_xfrm_refcount = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/mips/mm/ |
D | page.c | 273 static atomic_t run_once = ATOMIC_INIT(0); in build_clear_page() 420 static atomic_t run_once = ATOMIC_INIT(0); in build_copy_page()
|
/linux-4.1.27/net/rds/ |
D | cong.c | 81 static atomic_t rds_cong_generation = ATOMIC_INIT(0);
|
D | iw_recv.c | 44 static atomic_t rds_iw_allocation = ATOMIC_INIT(0);
|
D | ib_recv.c | 44 static atomic_t rds_ib_allocation = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/usb/misc/ |
D | appledisplay.c | 87 static atomic_t count_displays = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/hv/ |
D | connection.c | 40 .next_gpadl_handle = ATOMIC_INIT(0xE1E10),
|
D | channel_mgmt.c | 136 static atomic_t chan_num = ATOMIC_INIT(0); in alloc_channel()
|
D | hv_balloon.c | 472 static atomic_t trans_id = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/powerpc/platforms/85xx/ |
D | smp.c | 341 atomic_t kexec_down_cpus = ATOMIC_INIT(0);
|
/linux-4.1.27/kernel/power/ |
D | user.c | 45 atomic_t snapshot_device_available = ATOMIC_INIT(1);
|
/linux-4.1.27/drivers/devfreq/ |
D | devfreq-event.c | 311 static atomic_t event_no = ATOMIC_INIT(0); in devfreq_event_add_edev()
|
/linux-4.1.27/arch/mips/include/asm/ |
D | atomic.h | 25 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/arch/arm/include/asm/ |
D | atomic.h | 21 #define ATOMIC_INIT(i) { (i) } macro
|
/linux-4.1.27/drivers/s390/crypto/ |
D | zcrypt_api.c | 60 static atomic_t zcrypt_open_count = ATOMIC_INIT(0); 61 static atomic_t zcrypt_rescan_count = ATOMIC_INIT(0); 63 atomic_t zcrypt_rescan_req = ATOMIC_INIT(0);
|
D | zcrypt_pcica.c | 275 static atomic_t zcrypt_step = ATOMIC_INIT(0);
|
D | zcrypt_pcicc.c | 480 static atomic_t zcrypt_step = ATOMIC_INIT(0);
|
D | zcrypt_msgtype50.c | 417 static atomic_t zcrypt_step = ATOMIC_INIT(0);
|
D | zcrypt_msgtype6.c | 906 static atomic_t zcrypt_step = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/misc/vmw_vmci/ |
D | vmci_datagram.c | 53 static atomic_t delayed_dg_host_queue_size = ATOMIC_INIT(0);
|
D | vmci_guest.c | 75 static atomic_t vmci_num_guest_devices = ATOMIC_INIT(0);
|
D | vmci_host.c | 101 static atomic_t vmci_host_active_users = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/media/pci/tw68/ |
D | tw68-core.c | 63 static atomic_t tw68_instance = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/x86/kernel/cpu/mcheck/ |
D | therm_throt.c | 78 static atomic_t therm_throt_en = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/media/usb/hdpvr/ |
D | hdpvr-core.c | 36 static atomic_t dev_nr = ATOMIC_INIT(-1);
|
/linux-4.1.27/drivers/input/serio/ |
D | serio_raw.c | 295 static atomic_t serio_raw_no = ATOMIC_INIT(-1); in serio_raw_connect()
|
D | serio.c | 517 static atomic_t serio_no = ATOMIC_INIT(-1); in serio_init_port()
|
/linux-4.1.27/kernel/rcu/ |
D | update.c | 68 ATOMIC_INIT(IS_ENABLED(CONFIG_RCU_EXPEDITE_BOOT) ? 1 : 0);
|
/linux-4.1.27/fs/fuse/ |
D | fuse_i.h | 273 .refcnt = { ATOMIC_INIT(1) }, \
|
/linux-4.1.27/drivers/connector/ |
D | cn_proc.c | 53 static atomic_t proc_event_num_listeners = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/bus/ |
D | mips_cdmm.c | 273 static atomic_t mips_cdmm_next_id = ATOMIC_INIT(-1);
|
/linux-4.1.27/drivers/infiniband/hw/ipath/ |
D | ipath_diag.c | 83 static atomic_t diagpkt_count = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/scsi/ |
D | hosts.c | 45 static atomic_t scsi_host_next_hn = ATOMIC_INIT(0); /* host_no for next new host */
|
/linux-4.1.27/include/net/sctp/ |
D | sctp.h | 263 atomic_t sctp_dbg_objcnt_## name = ATOMIC_INIT(0)
|
/linux-4.1.27/drivers/base/power/ |
D | wakeup.c | 35 static atomic_t combined_event_count = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/usb/core/ |
D | devices.c | 132 .count = ATOMIC_INIT(1),
|
/linux-4.1.27/net/ipv6/ |
D | route.c | 254 .__refcnt = ATOMIC_INIT(1), 264 .rt6i_ref = ATOMIC_INIT(1), 271 .__refcnt = ATOMIC_INIT(1), 281 .rt6i_ref = ATOMIC_INIT(1), 286 .__refcnt = ATOMIC_INIT(1), 296 .rt6i_ref = ATOMIC_INIT(1),
|
D | ip6_flowlabel.c | 46 static atomic_t fl_size = ATOMIC_INIT(0);
|
/linux-4.1.27/kernel/locking/ |
D | locktorture.c | 112 ATOMIC_INIT(0),
|
/linux-4.1.27/drivers/firewire/ |
D | core-card.c | 531 static atomic_t index = ATOMIC_INIT(-1); in fw_card_initialize()
|
/linux-4.1.27/drivers/staging/lustre/lustre/llite/ |
D | llite_capa.c | 65 static atomic_t ll_capa_debug = ATOMIC_INIT(0);
|
/linux-4.1.27/fs/ |
D | coredump.c | 519 static atomic_t core_dump_count = ATOMIC_INIT(0); in do_coredump()
|
D | file.c | 431 .count = ATOMIC_INIT(1),
|
/linux-4.1.27/net/netlabel/ |
D | netlabel_mgmt.c | 51 atomic_t netlabel_mgmt_protocount = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/s390/block/ |
D | scm_blk.c | 29 static atomic_t nr_devices = ATOMIC_INIT(0);
|
/linux-4.1.27/net/9p/ |
D | trans_virtio.c | 59 static atomic_t vp_pinned = ATOMIC_INIT(0);
|
/linux-4.1.27/net/can/ |
D | af_can.c | 92 static atomic_t skbcounter = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/input/gameport/ |
D | gameport.c | 530 static atomic_t gameport_no = ATOMIC_INIT(-1); in gameport_init_port()
|
/linux-4.1.27/drivers/tty/hvc/ |
D | hvc_console.c | 75 static atomic_t hvc_needs_init __read_mostly = ATOMIC_INIT(-1);
|
/linux-4.1.27/drivers/staging/octeon/ |
D | ethernet.c | 115 atomic_t cvm_oct_poll_queue_stopping = ATOMIC_INIT(0);
|
/linux-4.1.27/arch/powerpc/platforms/powernv/ |
D | opal.c | 62 static atomic_t opal_notifier_hold = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/block/drbd/ |
D | drbd_bitmap.c | 1071 .in_flight = ATOMIC_INIT(1), in bm_rw() 1075 .kref = { ATOMIC_INIT(2) }, in bm_rw()
|
/linux-4.1.27/Documentation/zh_CN/video4linux/ |
D | v4l2-framework.txt | 183 static atomic_t drv_instance = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/infiniband/hw/qib/ |
D | qib_diag.c | 147 static atomic_t diagpkt_count = ATOMIC_INIT(0);
|
/linux-4.1.27/fs/lockd/ |
D | clntproc.c | 39 static atomic_t nlm_cookie = ATOMIC_INIT(0x1234);
|
/linux-4.1.27/drivers/net/usb/ |
D | sierra_net.c | 54 static atomic_t iface_counter = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/staging/panel/ |
D | panel.c | 469 static atomic_t lcd_available = ATOMIC_INIT(1); 470 static atomic_t keypad_available = ATOMIC_INIT(1);
|
/linux-4.1.27/drivers/staging/ozwpan/ |
D | ozpd.c | 37 static atomic_t g_submitted_isoc = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/staging/lustre/lustre/osc/ |
D | osc_page.c | 581 static atomic_t osc_lru_waiters = ATOMIC_INIT(0);
|
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/ |
D | cl_object.c | 448 .cs_stats = { ATOMIC_INIT(0), }
|
/linux-4.1.27/drivers/staging/unisys/visorchipset/ |
D | visorchipset_main.c | 206 static atomic_t visorchipset_cache_buffers_in_use = ATOMIC_INIT(0); 1457 static atomic_t id = ATOMIC_INIT(0); in parahotplug_next_id()
|
/linux-4.1.27/Documentation/ |
D | atomic_ops.txt | 28 #define ATOMIC_INIT(i) { (i) } 33 static atomic_t my_counter = ATOMIC_INIT(1);
|
/linux-4.1.27/drivers/xen/ |
D | gntdev.c | 58 static atomic_t pages_mapped = ATOMIC_INIT(0);
|
/linux-4.1.27/net/wireless/ |
D | core.c | 342 static atomic_t wiphy_counter = ATOMIC_INIT(0); in wiphy_new_nm()
|
/linux-4.1.27/net/rfkill/ |
D | core.c | 327 static atomic_t rfkill_input_disabled = ATOMIC_INIT(0);
|
/linux-4.1.27/net/netlink/ |
D | genetlink.c | 26 atomic_t genl_sk_destructing_cnt = ATOMIC_INIT(0);
|