/linux-6.3-rc2/tools/testing/selftests/bpf/progs/ |
A D | task_kfunc_failure.c | 34 struct task_struct *acquired; in BPF_PROG() local 43 bpf_task_release(acquired); in BPF_PROG() 56 bpf_task_release(acquired); in BPF_PROG() 65 struct task_struct *acquired; in BPF_PROG() local 69 bpf_task_release(acquired); in BPF_PROG() 78 struct task_struct *acquired; in BPF_PROG() local 82 bpf_task_release(acquired); in BPF_PROG() 96 if (!acquired) in BPF_PROG() 98 bpf_task_release(acquired); in BPF_PROG() 142 bpf_task_release(acquired); in BPF_PROG() [all …]
|
A D | cgrp_kfunc_failure.c | 35 struct cgroup *acquired; in BPF_PROG() local 44 bpf_cgroup_release(acquired); in BPF_PROG() 57 bpf_cgroup_release(acquired); in BPF_PROG() 66 struct cgroup *acquired; in BPF_PROG() local 70 bpf_cgroup_release(acquired); in BPF_PROG() 79 struct cgroup *acquired; in BPF_PROG() local 83 bpf_cgroup_release(acquired); in BPF_PROG() 92 struct cgroup *acquired; in BPF_PROG() local 96 if (!acquired) in BPF_PROG() 98 bpf_cgroup_release(acquired); in BPF_PROG() [all …]
|
A D | task_kfunc_success.c | 29 struct task_struct *acquired; in test_acquire_release() local 32 bpf_task_release(acquired); in test_acquire_release() 151 bpf_task_release(acquired); in BPF_PROG() 158 struct task_struct *acquired; in lookup_compare_pid() local 161 if (!acquired) { in lookup_compare_pid() 166 if (acquired->pid != p->pid) in lookup_compare_pid() 168 bpf_task_release(acquired); in lookup_compare_pid() 174 struct task_struct *acquired; in BPF_PROG() local 197 struct task_struct *acquired; in is_pid_lookup_valid() local 200 if (acquired) { in is_pid_lookup_valid() [all …]
|
A D | cgrp_kfunc_common.h | 44 struct cgroup *acquired, *old; in cgrps_kfunc_map_insert() local 62 acquired = bpf_cgroup_acquire(cgrp); in cgrps_kfunc_map_insert() 63 old = bpf_kptr_xchg(&v->cgrp, acquired); in cgrps_kfunc_map_insert()
|
A D | task_kfunc_common.h | 44 struct task_struct *acquired, *old; in tasks_kfunc_map_insert() local 62 acquired = bpf_task_acquire(p); in tasks_kfunc_map_insert() 63 old = bpf_kptr_xchg(&v->task, acquired); in tasks_kfunc_map_insert()
|
A D | cgrp_kfunc_success.c | 35 struct cgroup *acquired; in BPF_PROG() local 40 acquired = bpf_cgroup_acquire(cgrp); in BPF_PROG() 41 bpf_cgroup_release(acquired); in BPF_PROG()
|
/linux-6.3-rc2/drivers/reset/ |
A D | core.c | 47 bool acquired; member 230 if (!rstc->acquired) in reset_control_array_rearm() 350 if (!rstc->acquired) in reset_control_reset() 418 if (!rstc->acquired) in reset_control_rearm() 655 if (rstc->acquired) { in reset_control_acquire() 662 if (rc->acquired) { in reset_control_acquire() 787 rstc->acquired = acquired; in __reset_control_get_internal() 941 bool acquired) in __reset_control_get() argument 951 acquired); in __reset_control_get() 1175 bool acquired) in of_reset_control_array_get() argument [all …]
|
/linux-6.3-rc2/drivers/gpu/drm/ |
A D | drm_agpsupport.c | 63 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_info() 109 if (dev->agp->acquired) in drm_legacy_agp_acquire() 114 dev->agp->acquired = 1; in drm_legacy_agp_acquire() 143 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_release() 146 dev->agp->acquired = 0; in drm_legacy_agp_release() 169 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_enable() 202 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_alloc() 272 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_unbind() 308 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_bind() 444 if (dev->agp->acquired) in drm_legacy_agp_clear() [all …]
|
/linux-6.3-rc2/include/linux/ |
A D | reset.h | 46 bool optional, bool acquired); 49 bool optional, bool acquired); 53 bool shared, bool optional, bool acquired); 59 bool optional, bool acquired); 62 bool shared, bool optional, bool acquired); 68 bool acquired); 120 bool optional, bool acquired) in __of_reset_control_get() argument 128 bool acquired) in __reset_control_get() argument 165 bool shared, bool optional, bool acquired) in __reset_control_bulk_get() argument 178 bool acquired) in __devm_reset_control_get() argument [all …]
|
A D | ww_mutex.h | 58 unsigned int acquired; member 137 ctx->acquired = 0; in ww_acquire_init() 191 DEBUG_LOCKS_WARN_ON(ctx->acquired); in ww_acquire_fini() 201 ctx->acquired = ~0U; in ww_acquire_fini()
|
/linux-6.3-rc2/kernel/locking/ |
A D | ww_mutex.h | 208 DEBUG_LOCKS_WARN_ON(ww_ctx->acquired > 0); in ww_mutex_lock_acquired() 217 ww_ctx->acquired++; in ww_mutex_lock_acquired() 283 if (waiter->ww_ctx->acquired > 0 && __ww_ctx_less(waiter->ww_ctx, ww_ctx)) { in __ww_mutex_die() 324 if (ww_ctx->acquired > 0 && __ww_ctx_less(hold_ctx, ww_ctx)) { in __ww_mutex_wound() 415 if (ww_ctx->acquired > 0) { in __ww_mutex_kill() 448 if (ctx->acquired == 0) in __ww_mutex_check_kill() 563 DEBUG_LOCKS_WARN_ON(!lock->ctx->acquired); in __ww_mutex_unlock() 565 if (lock->ctx->acquired > 0) in __ww_mutex_unlock() 566 lock->ctx->acquired--; in __ww_mutex_unlock()
|
A D | ww_rt_mutex.c | 24 if (ww_ctx->acquired == 0) in ww_mutex_trylock() 56 if (ww_ctx->acquired == 0) in __ww_rt_mutex_lock()
|
A D | mutex.c | 322 if (ww_ctx->acquired > 0 && READ_ONCE(ww->ctx)) in ww_mutex_spin_on_owner() 594 if (ww_ctx->acquired == 0) in __mutex_lock_common() 660 goto acquired; in __mutex_lock_common() 702 acquired: in __mutex_lock_common() 782 if (ww_ctx->acquired == 0) in ww_mutex_trylock() 873 if (!ret && ctx && ctx->acquired > 1) in ww_mutex_lock() 889 if (!ret && ctx && ctx->acquired > 1) in ww_mutex_lock_interruptible()
|
/linux-6.3-rc2/drivers/gpu/drm/radeon/ |
A D | radeon_agp.c | 169 if (rdev->agp->acquired) in radeon_agp_head_acquire() 174 rdev->agp->acquired = 1; in radeon_agp_head_acquire() 180 if (!rdev->agp || !rdev->agp->acquired) in radeon_agp_head_release() 183 rdev->agp->acquired = 0; in radeon_agp_head_release() 189 if (!rdev->agp || !rdev->agp->acquired) in radeon_agp_head_enable() 202 if (!rdev->agp || !rdev->agp->acquired) in radeon_agp_head_info() 369 if (rdev->agp && rdev->agp->acquired) { in radeon_agp_fini()
|
/linux-6.3-rc2/drivers/acpi/acpica/ |
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()
|
/linux-6.3-rc2/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
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()
|
/linux-6.3-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/pci/ |
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()
|
/linux-6.3-rc2/Documentation/devicetree/bindings/gnss/ |
A D | sirfstar.yaml | 15 2004 and used in a lot of dedicated GPS devices. In 2009 SiRF was acquired 17 acquired by Samsung, while some products remained with CSR. In 2014 CSR 18 was acquired by Qualcomm who still sell some of the SiRF products.
|
/linux-6.3-rc2/include/acpi/platform/ |
A D | acenv.h | 246 #define ACPI_ACQUIRE_GLOBAL_LOCK(Glptr, acquired) acquired = 1 argument
|
/linux-6.3-rc2/tools/perf/Documentation/ |
A D | perf-lock.txt | 67 Sorting key. Possible values: acquired (default), contended, 73 customize that using this. Possible values: acquired, contended, 84 $ perf lock report -t -F acquired,contended,avg_wait 86 Name acquired contended avg wait (ns)
|
/linux-6.3-rc2/Documentation/devicetree/bindings/arm/ |
A D | gemini.yaml | 16 Storm Semiconductor was acquired by Cortina Systems in 2008 and the SoC was 18 in turn acquired by Inphi, who seem to have discontinued this product family.
|
/linux-6.3-rc2/Documentation/sound/cards/ |
A D | img-spdif-in.rst | 39 acquired 49 This control is used to change the threshold at which a lock is acquired.
|
/linux-6.3-rc2/Documentation/filesystems/ |
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
|
/linux-6.3-rc2/Documentation/locking/ |
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
|
/linux-6.3-rc2/Documentation/devicetree/bindings/net/dsa/ |
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.
|