| /Linux-v5.4/drivers/gpu/drm/radeon/ |
| D | radeon_semaphore.c | 35 struct radeon_semaphore **semaphore) in radeon_semaphore_create() argument 39 *semaphore = kmalloc(sizeof(struct radeon_semaphore), GFP_KERNEL); in radeon_semaphore_create() 40 if (*semaphore == NULL) { in radeon_semaphore_create() 44 &(*semaphore)->sa_bo, 8, 8); in radeon_semaphore_create() 46 kfree(*semaphore); in radeon_semaphore_create() 47 *semaphore = NULL; in radeon_semaphore_create() 50 (*semaphore)->waiters = 0; in radeon_semaphore_create() 51 (*semaphore)->gpu_addr = radeon_sa_bo_gpu_addr((*semaphore)->sa_bo); in radeon_semaphore_create() 53 *((uint64_t *)radeon_sa_bo_cpu_addr((*semaphore)->sa_bo)) = 0; in radeon_semaphore_create() 59 struct radeon_semaphore *semaphore) in radeon_semaphore_emit_signal() argument [all …]
|
| D | radeon_test.c | 318 struct radeon_semaphore *semaphore = NULL; in radeon_test_ring_sync() local 321 r = radeon_semaphore_create(rdev, &semaphore); in radeon_test_ring_sync() 332 radeon_semaphore_emit_wait(rdev, ringA->idx, semaphore); in radeon_test_ring_sync() 344 radeon_semaphore_emit_wait(rdev, ringA->idx, semaphore); in radeon_test_ring_sync() 363 radeon_semaphore_emit_signal(rdev, ringB->idx, semaphore); in radeon_test_ring_sync() 384 radeon_semaphore_emit_signal(rdev, ringB->idx, semaphore); in radeon_test_ring_sync() 394 radeon_semaphore_free(rdev, &semaphore, NULL); in radeon_test_ring_sync() 412 struct radeon_semaphore *semaphore = NULL; in radeon_test_ring_sync2() local 416 r = radeon_semaphore_create(rdev, &semaphore); in radeon_test_ring_sync2() 427 radeon_semaphore_emit_wait(rdev, ringA->idx, semaphore); in radeon_test_ring_sync2() [all …]
|
| D | radeon_sync.c | 145 struct radeon_semaphore *semaphore; in radeon_sync_rings() local 164 r = radeon_semaphore_create(rdev, &semaphore); in radeon_sync_rings() 168 sync->semaphores[count++] = semaphore; in radeon_sync_rings() 176 if (!radeon_semaphore_emit_signal(rdev, i, semaphore)) { in radeon_sync_rings() 186 if (!radeon_semaphore_emit_wait(rdev, ring, semaphore)) { in radeon_sync_rings()
|
| D | uvd_v3_1.c | 41 struct radeon_semaphore *semaphore, in uvd_v3_1_semaphore_emit() argument 44 uint64_t addr = semaphore->gpu_addr; in uvd_v3_1_semaphore_emit()
|
| D | uvd_v2_2.c | 74 struct radeon_semaphore *semaphore, in uvd_v2_2_semaphore_emit() argument 77 uint64_t addr = semaphore->gpu_addr; in uvd_v2_2_semaphore_emit()
|
| /Linux-v5.4/include/linux/ |
| D | semaphore.h | 15 struct semaphore { struct 29 struct semaphore name = __SEMAPHORE_INITIALIZER(name, 1) argument 31 static inline void sema_init(struct semaphore *sem, int val) in sema_init() 34 *sem = (struct semaphore) __SEMAPHORE_INITIALIZER(*sem, val); in sema_init() 38 extern void down(struct semaphore *sem); 39 extern int __must_check down_interruptible(struct semaphore *sem); 40 extern int __must_check down_killable(struct semaphore *sem); 41 extern int __must_check down_trylock(struct semaphore *sem); 42 extern int __must_check down_timeout(struct semaphore *sem, long jiffies); 43 extern void up(struct semaphore *sem);
|
| D | hil_mlc.h | 136 struct semaphore csem; /* Raised when loop idle */ 139 struct semaphore osem; /* Raised when outpacket dispatched */ 143 struct semaphore isem; /* Raised when a packet arrives */
|
| D | hp_sdc.h | 71 struct semaphore *semaphore; /* Semaphore to sleep on. */ member
|
| /Linux-v5.4/kernel/locking/ |
| D | semaphore.c | 36 static noinline void __down(struct semaphore *sem); 37 static noinline int __down_interruptible(struct semaphore *sem); 38 static noinline int __down_killable(struct semaphore *sem); 39 static noinline int __down_timeout(struct semaphore *sem, long timeout); 40 static noinline void __up(struct semaphore *sem); 53 void down(struct semaphore *sem) in down() 75 int down_interruptible(struct semaphore *sem) in down_interruptible() 101 int down_killable(struct semaphore *sem) in down_killable() 130 int down_trylock(struct semaphore *sem) in down_trylock() 155 int down_timeout(struct semaphore *sem, long timeout) in down_timeout() [all …]
|
| D | Makefile | 6 obj-y += mutex.o semaphore.o rwsem.o percpu-rwsem.o
|
| /Linux-v5.4/drivers/input/serio/ |
| D | hp_sdc_mlc.c | 193 if (priv->trans.act.semaphore != &mlc->csem) in hp_sdc_mlc_cts() 203 priv->trans.act.semaphore = &mlc->csem; in hp_sdc_mlc_cts() 217 priv->trans.act.semaphore = &mlc->osem; in hp_sdc_mlc_cts() 245 priv->trans.act.semaphore = &mlc->osem; in hp_sdc_mlc_out() 286 priv->trans.act.semaphore = &mlc->osem; in hp_sdc_mlc_out() 316 hp_sdc_mlc_priv.trans.act.semaphore = &mlc->osem; in hp_sdc_mlc_init()
|
| D | hp_sdc.c | 201 if (curr->act.semaphore) in hp_sdc_take() 202 up(curr->act.semaphore); in hp_sdc_take() 328 if (curr->act.semaphore) in hp_sdc_tasklet() 329 up(curr->act.semaphore); in hp_sdc_tasklet() 566 up(curr->act.semaphore); in hp_sdc_put() 833 struct semaphore s_sync; in hp_sdc_init() 903 t_sync.act.semaphore = &s_sync; in hp_sdc_init() 998 struct semaphore tq_init_sem; in hp_sdc_register() 1039 tq_init.act.semaphore = &tq_init_sem; in hp_sdc_register()
|
| /Linux-v5.4/drivers/acpi/acpica/ |
| D | exsystem.c | 31 acpi_status acpi_ex_system_wait_semaphore(acpi_semaphore semaphore, u16 timeout) in acpi_ex_system_wait_semaphore() argument 37 status = acpi_os_wait_semaphore(semaphore, 1, ACPI_DO_NOT_WAIT); in acpi_ex_system_wait_semaphore() 47 status = acpi_os_wait_semaphore(semaphore, 1, timeout); in acpi_ex_system_wait_semaphore()
|
| /Linux-v5.4/fs/jffs2/ |
| D | README.Locking | 141 This read/write semaphore protects against concurrent access to the 154 This read/write semaphore protects against concurrent access to the 156 In read-only path, write-semaphore is too much exclusion. It's enough 157 by read-semaphore. But you must hold write-semaphore when updating, 162 when updating such a object is necessary under holding read semaphore. 163 For example, do_jffs2_getxattr() holds read-semaphore to scan xref and 164 xdatum at first. But it retries this process with holding write-semaphore 165 after release read-semaphore, if it's necessary to load name/value pair
|
| /Linux-v5.4/Documentation/ |
| D | percpu-rw-semaphore.txt | 5 Percpu rw semaphores is a new read-write semaphore design that is 9 cores take the lock for reading, the cache line containing the semaphore
|
| /Linux-v5.4/drivers/md/bcache/ |
| D | bcache.h | 307 struct semaphore sb_write_mutex; 336 struct semaphore in_flight; 530 struct semaphore sb_write_mutex; 655 struct semaphore moving_in_flight; 671 struct semaphore uuid_write_mutex;
|
| /Linux-v5.4/Documentation/networking/ |
| D | netdevices.txt | 51 Synchronization: rtnl_lock() semaphore. 55 Synchronization: rtnl_lock() semaphore. 60 Synchronization: rtnl_lock() semaphore.
|
| /Linux-v5.4/drivers/input/misc/ |
| D | hp_sdc_rtc.c | 59 static struct semaphore i8042tregs; 86 struct semaphore tsem; in hp_sdc_rtc_do_read_bbrtc() 105 t.act.semaphore = &tsem; in hp_sdc_rtc_do_read_bbrtc() 177 t.act.semaphore = &i8042tregs; in hp_sdc_rtc_read_i8042timer()
|
| /Linux-v5.4/drivers/net/wireless/st/cw1200/ |
| D | scan.h | 22 struct semaphore lock;
|
| /Linux-v5.4/include/linux/mux/ |
| D | driver.h | 43 struct semaphore lock; /* protects the state of the mux */
|
| /Linux-v5.4/drivers/acpi/ |
| D | osl.c | 1190 struct semaphore *sem = NULL; in acpi_os_create_semaphore() 1192 sem = acpi_os_allocate_zeroed(sizeof(struct semaphore)); in acpi_os_create_semaphore() 1215 struct semaphore *sem = (struct semaphore *)handle; in acpi_os_delete_semaphore() 1235 struct semaphore *sem = (struct semaphore *)handle; in acpi_os_wait_semaphore() 1279 struct semaphore *sem = (struct semaphore *)handle; in acpi_os_signal_semaphore()
|
| /Linux-v5.4/drivers/net/ethernet/huawei/hinic/ |
| D | hinic_dev.h | 62 struct semaphore mgmt_lock;
|
| D | hinic_hw_io.h | 45 struct semaphore idx_lock;
|
| /Linux-v5.4/drivers/scsi/qla4xxx/ |
| D | ql4_dbg.c | 72 (uint8_t) offsetof(struct isp_reg, u1.isp4022.semaphore), in qla4xxx_dump_registers() 73 readw(&ha->reg->u1.isp4022.semaphore)); in qla4xxx_dump_registers()
|
| /Linux-v5.4/include/video/ |
| D | udlfb.h | 29 struct semaphore limit_sem;
|