| /OK3568_Linux_fs/kernel/drivers/reset/ |
| H A D | core.c | 46 bool acquired; member 316 if (!rstc->acquired) in reset_control_reset() 380 if (!rstc->acquired) { in reset_control_assert() 420 if (!rstc->acquired) { in reset_control_deassert() 497 if (rstc->acquired) { in reset_control_acquire() 504 if (rc->acquired) { in reset_control_acquire() 511 rstc->acquired = true; in reset_control_acquire() 536 rstc->acquired = false; in reset_control_release() 542 unsigned int index, bool shared, bool acquired) in __reset_control_get_internal() argument 555 if (!rstc->shared && !shared && !acquired) in __reset_control_get_internal() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/ |
| H A D | drm_agpsupport.c | 64 if (!dev->agp || !dev->agp->acquired) in drm_agp_info() 108 if (dev->agp->acquired) in drm_agp_acquire() 113 dev->agp->acquired = 1; in drm_agp_acquire() 146 if (!dev->agp || !dev->agp->acquired) in drm_agp_release() 149 dev->agp->acquired = 0; in drm_agp_release() 172 if (!dev->agp || !dev->agp->acquired) in drm_agp_enable() 209 if (!dev->agp || !dev->agp->acquired) in drm_agp_alloc() 283 if (!dev->agp || !dev->agp->acquired) in drm_agp_unbind() 323 if (!dev->agp || !dev->agp->acquired) in drm_agp_bind() 366 if (!dev->agp || !dev->agp->acquired) in drm_agp_free() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | reset.h | 24 bool optional, bool acquired); 27 bool optional, bool acquired); 32 bool optional, bool acquired); 38 bool acquired); 85 bool optional, bool acquired) in __of_reset_control_get() argument 93 bool acquired) in __reset_control_get() argument 101 bool acquired) in __devm_reset_control_get() argument 114 bool acquired) in of_reset_control_array_get() argument
|
| H A D | ww_mutex.h | 34 unsigned int acquired; member 126 ctx->acquired = 0; in ww_acquire_init() 180 DEBUG_LOCKS_WARN_ON(ctx->acquired); in ww_acquire_fini() 190 ctx->acquired = ~0U; in ww_acquire_fini()
|
| /OK3568_Linux_fs/kernel/kernel/locking/ |
| H A D | mutex.c | 350 DEBUG_LOCKS_WARN_ON(ww_ctx->acquired > 0); in ww_mutex_lock_acquired() 359 ww_ctx->acquired++; in ww_mutex_lock_acquired() 390 if (waiter->ww_ctx->acquired > 0 && in __ww_mutex_die() 430 if (ww_ctx->acquired > 0 && __ww_ctx_stamp_after(hold_ctx, ww_ctx)) { in __ww_mutex_wound() 537 if (ww_ctx->acquired > 0 && READ_ONCE(ww->ctx)) in ww_mutex_spin_on_owner() 781 DEBUG_LOCKS_WARN_ON(!lock->ctx->acquired); in ww_mutex_unlock() 783 if (lock->ctx->acquired > 0) in ww_mutex_unlock() 784 lock->ctx->acquired--; in ww_mutex_unlock() 796 if (ww_ctx->acquired > 0) { in __ww_mutex_kill() 830 if (ctx->acquired == 0) in __ww_mutex_check_kill() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
| H A D | outp.c | 93 OUTP_TRACE(outp, "release %02x &= %02x %p", outp->acquired, ~user, ior); in nvkm_outp_release() 95 outp->acquired &= ~user; in nvkm_outp_release() 96 if (!outp->acquired) { in nvkm_outp_release() 111 outp->acquired |= user; in nvkm_outp_acquire_ior() 149 OUTP_TRACE(outp, "acquire %02x |= %02x %p", outp->acquired, user, ior); in nvkm_outp_acquire() 151 outp->acquired |= user; in nvkm_outp_acquire()
|
| H A D | outp.h | 24 u8 acquired:2; member
|
| /OK3568_Linux_fs/kernel/drivers/acpi/acpica/ |
| H A D | evglock.c | 174 u8 acquired = FALSE; in acpi_ev_acquire_global_lock() local 217 ACPI_ACQUIRE_GLOBAL_LOCK(acpi_gbl_FACS, acquired); in acpi_ev_acquire_global_lock() 218 if (acquired) { in acpi_ev_acquire_global_lock()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/subdev/pci/ |
| H A D | agp.c | 46 if (pci->agp.acquired) { in nvkm_agp_fini() 48 pci->agp.acquired = false; in nvkm_agp_fini() 93 pci->agp.acquired = true; in nvkm_agp_init()
|
| /OK3568_Linux_fs/kernel/include/acpi/platform/ |
| H A D | acenv.h | 249 #define ACPI_ACQUIRE_GLOBAL_LOCK(Glptr, acquired) acquired = 1 argument
|
| /OK3568_Linux_fs/kernel/Documentation/locking/ |
| H A D | ww-mutex-design.rst | 65 acquired when starting the lock acquisition. This ticket is stored in the 79 killed its transaction after having dropped all already acquired locks. 84 contending lock (after having dropped all other already acquired locks) will 85 work correctly. After all if no other ww mutex has been acquired yet there's 94 - When full debugging is enabled ww_mutex_lock_slow checks that all acquired 97 slowpath until the contended lock can be acquired). 262 objects acquired with the fixed list. But the w/w mutex debug checks will catch 347 other locks acquired already (ctx->acquired > 0). Note that this waiter
|
| H A D | lockdep-design.rst | 78 '.' acquired while irqs disabled and not in irq context 79 '-' acquired in irq context 80 '+' acquired with irqs enabled 81 '?' acquired in irq context with irqs enabled. 89 || \--> acquired in softirq context 91 \----> acquired in hardirq context 94 For a given STATE, whether the lock is ever acquired in that STATE 118 is irq-unsafe means it was ever acquired with irq enabled. 128 cannot be ever acquired with irq enabled (irq-unsafe). Otherwise, a 130 was acquired but before released, if the context is interrupted this [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | directory-locking.rst | 82 the order until we had acquired all locks). 84 (3) locks on non-directory objects are acquired only after locks on 85 directory objects, and are acquired in inode pointer order. 119 to (2) the order hadn't changed since we had acquired filesystem lock. 133 we had acquired filesystem lock and rename() would fail with -ELOOP in that
|
| /OK3568_Linux_fs/kernel/Documentation/sound/cards/ |
| H A D | img-spdif-in.rst | 39 acquired 49 This control is used to change the threshold at which a lock is acquired.
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/dsa/ |
| H A D | vitesse,vsc73xx.txt | 5 The Vitesse company has been acquired by Microsemi and Microsemi has 6 been acquired Microchip but retains this vendor branding.
|
| /OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/ |
| H A D | BSD-2-Clause-Patent | 19 acquired or hereafter acquired, licensable by such copyright holder or contributor
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/arm/ |
| H A D | gemini.txt | 9 Storm Semiconductor was acquired by Cortina Systems in 2008 and the SoC was 11 in turn acquired by Inphi, who seem to have discontinued this product family.
|
| /OK3568_Linux_fs/kernel/tools/memory-model/litmus-tests/ |
| H A D | MP+polockonce+poacquiresilsil.litmus | 9 * the smp_load_acquire() executed before the lock was acquired (loosely
|
| H A D | MP+polockmbonce+poacquiresilsil.litmus | 10 * executed before the lock was acquired (loosely speaking).
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
| H A D | pci.h | 25 bool acquired; member
|
| /OK3568_Linux_fs/kernel/Documentation/RCU/ |
| H A D | UP.rst | 116 Any lock that is acquired within an RCU callback must be acquired 118 For example, if "mylock" is acquired by an RCU callback, then
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | gemini-sl93512r.dts | 5 * "Gemini324 EV-Board" before Storm acquired Storlink Semiconductor. 6 * The series were later acquired by Cortina Systems.
|
| /OK3568_Linux_fs/kernel/tools/perf/Documentation/ |
| H A D | perf-lock.txt | 54 Sorting key. Possible values: acquired (default), contended,
|
| /OK3568_Linux_fs/kernel/include/drm/ |
| H A D | drm_agpsupport.h | 22 int acquired; member
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/driver-model/ |
| H A D | devres.rst | 58 drivers using devres. For example, coherent DMA memory is acquired 101 detached. If most resources are acquired using managed interface, a 150 groups are released. One usage is to rollback series of acquired
|