Home
last modified time | relevance | path

Searched refs:spinlock (Results 1 – 25 of 30) sorted by relevance

12

/f-stack/dpdk/drivers/net/ena/base/
H A Dena_plat_dpdk.h121 #define ENA_SPINLOCK_INIT(spinlock) rte_spinlock_init(&spinlock) argument
122 #define ENA_SPINLOCK_LOCK(spinlock, flags) \ argument
123 ({(void)flags; rte_spinlock_lock(&spinlock); })
124 #define ENA_SPINLOCK_UNLOCK(spinlock, flags) \ argument
125 ({(void)flags; rte_spinlock_unlock(&(spinlock)); })
126 #define ENA_SPINLOCK_DESTROY(spinlock) ((void)spinlock) argument
/f-stack/freebsd/contrib/ena-com/
H A Dena_plat.h215 #define ENA_SPINLOCK_INIT(spinlock) \ argument
216 mtx_init(&(spinlock), "ena_spin", NULL, MTX_SPIN)
217 #define ENA_SPINLOCK_DESTROY(spinlock) \ argument
219 if (mtx_initialized(&(spinlock))) \
220 mtx_destroy(&(spinlock)); \
222 #define ENA_SPINLOCK_LOCK(spinlock, flags) \ argument
225 mtx_lock_spin(&(spinlock)); \
227 #define ENA_SPINLOCK_UNLOCK(spinlock, flags) \ argument
230 mtx_unlock_spin(&(spinlock)); \
/f-stack/freebsd/contrib/device-tree/Bindings/hwlock/
H A Domap-hwspinlock.txt25 hwspinlock: spinlock@4a0f6000 {
28 ti,hwmods = "spinlock";
35 hwspinlock: spinlock@30e00000 {
H A Dsirf,hwspinlock.txt1 SIRF Hardware spinlock device Binding
/f-stack/dpdk/drivers/common/iavf/
H A Diavf_osdep.h161 rte_spinlock_t spinlock; member
174 rte_spinlock_init(&sp->spinlock); in iavf_init_spinlock_d()
180 rte_spinlock_lock(&sp->spinlock); in iavf_acquire_spinlock_d()
186 rte_spinlock_unlock(&sp->spinlock); in iavf_release_spinlock_d()
/f-stack/freebsd/contrib/device-tree/Bindings/spi/
H A Dspi-sprd-adi.txt23 one hardware spinlock protection to prevent other systems from reading/writing
26 Then we need one hardware spinlock to synchronize between the multiple subsystems.
29 subsystem accessing, that means no need to add hardware spinlock to synchronize,
30 thus change the hardware spinlock support to be optional to keep backward
/f-stack/dpdk/drivers/net/ice/base/
H A Dice_osdep.h203 rte_spinlock_t spinlock; member
209 rte_spinlock_init(&sp->spinlock); in ice_init_lock()
215 rte_spinlock_lock(&sp->spinlock); in ice_acquire_lock()
221 rte_spinlock_unlock(&sp->spinlock); in ice_release_lock()
/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel-rwsem.m44 dnl # rwsem-spinlock "->activity" changed to "->count"
/f-stack/freebsd/contrib/device-tree/Bindings/interrupt-controller/
H A Dst,stm32-exti.yaml36 Reference to a phandle of a hardware spinlock provider node.
/f-stack/dpdk/doc/guides/prog_guide/
H A Dstack_lib.rst37 index, and a spinlock. Accesses to the stack are made multi-thread safe by the
38 spinlock.
H A Dwriting_efficient_code.rst212 For example, the memory operations before the spinlock lock are allowed to
216 On the other hand, the memory operations after the spinlock unlock are allowed
H A Dpoll_mode_drv.rst125 * Remove explicit spinlock in some applications where lcores are not mapped to Tx queues with 1:1 …
/f-stack/freebsd/crypto/openssl/arm/
H A Darmv4cpuid.S32 add r6,r3,r2 @ &spinlock
43 str r0,[r6] @ release spinlock
/f-stack/freebsd/contrib/device-tree/Bindings/arm/omap/
H A Domap.txt30 spinlock@1 {
31 compatible = "ti,omap4-spinlock";
32 ti,hwmods = "spinlock";
/f-stack/freebsd/contrib/device-tree/Bindings/mfd/
H A Dsyscon.yaml64 Reference to a phandle of a hardware spinlock provider node.
/f-stack/dpdk/drivers/net/i40e/base/
H A Di40e_osdep.h196 rte_spinlock_t spinlock; member
/f-stack/dpdk/doc/api/
H A Ddoxy-api-index.md77 [spinlock] (@ref rte_spinlock.h),
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal_defs.h.in83 * documented in the spinlock(3) manual page.
/f-stack/freebsd/contrib/device-tree/src/arm64/ti/
H A Dk3-am65-main.dtsi470 hwspinlock: spinlock@30e00000 {
H A Dk3-j721e-main.dtsi144 hwspinlock: spinlock@30e00000 {
/f-stack/dpdk/doc/guides/contributing/
H A Ddocumentation.rst615 * A pointer to the spinlock.
/f-stack/dpdk/doc/guides/rel_notes/
H A Drelease_2_1.rst302 and spinlock (a.k.a. lock elision). The methods are implemented for x86
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dam33xx-l4.dtsi1463 hwspinlock: spinlock@0 {
H A Dam437x-l4.dtsi1179 hwspinlock: spinlock@0 {
/f-stack/app/redis-5.0.5/deps/jemalloc/
H A Dconfigure.ac1969 dnl Check for spinlock(3) operations as provided on Darwin.

12