/linux-4.4.14/arch/arm/include/asm/ |
D | spinlock.h | 85 unsigned long contended, res; in arch_spin_trylock() local 96 : "=&r" (slock), "=&r" (contended), "=&r" (res) in arch_spin_trylock() 101 if (!contended) { in arch_spin_trylock() 162 unsigned long contended, res; in arch_write_trylock() local 171 : "=&r" (contended), "=&r" (res) in arch_write_trylock() 176 if (!contended) { in arch_write_trylock() 254 unsigned long contended, res; in arch_read_trylock() local 263 : "=&r" (contended), "=&r" (res) in arch_read_trylock() 269 if (contended < 0x80000000) { in arch_read_trylock()
|
/linux-4.4.14/drivers/gpu/drm/ |
D | drm_modeset_lock.c | 289 WARN_ON(ctx->contended); in drm_modeset_drop_locks() 307 WARN_ON(ctx->contended); in modeset_lock() 337 ctx->contended = lock; in modeset_lock() 346 struct drm_modeset_lock *contended = ctx->contended; in modeset_backoff() local 348 ctx->contended = NULL; in modeset_backoff() 350 if (WARN_ON(!contended)) in modeset_backoff() 355 return modeset_lock(contended, ctx, interruptible, true); in modeset_backoff()
|
/linux-4.4.14/mm/ |
D | compaction.c | 316 cc->contended = COMPACT_CONTENDED_LOCK; in compact_trylock_irqsave() 350 cc->contended = COMPACT_CONTENDED_SCHED; in compact_unlock_should_abort() 356 cc->contended = COMPACT_CONTENDED_SCHED; in compact_unlock_should_abort() 379 cc->contended = COMPACT_CONTENDED_SCHED; in compact_should_abort() 1008 || cc->contended) { in isolate_freepages() 1050 if (!cc->contended) in compaction_alloc() 1152 if (!low_pfn || cc->contended) { in isolate_migratepages() 1196 if (cc->contended || fatal_signal_pending(current)) in __compact_finished() 1479 gfp_t gfp_mask, enum migrate_mode mode, int *contended, in compact_zone_order() argument 1501 *contended = cc.contended; in compact_zone_order() [all …]
|
D | internal.h | 213 int contended; /* Signal need_sched() or lock member
|
/linux-4.4.14/Documentation/filesystems/ |
D | directory-locking | 74 consider the set of contended locks. First of all, filesystem lock is 75 not contended, since any process blocked on it is not holding any locks. 81 non-directory objects are not included in the set of contended locks. 86 Any contended object is either held by cross-directory rename or 87 has a child that is also contended. Indeed, suppose that it is held by 92 Otherwise the set of contended objects would be infinite - each of them 93 would have a contended child and we had assumed that no object is its 99 would again have an infinite set of contended objects). But that
|
D | path-lookup.txt | 371 root), the less contended the dentry is likely to be. The closer we are to
|
/linux-4.4.14/include/linux/ |
D | compaction.h | 43 enum migrate_mode mode, int *contended); 59 enum migrate_mode mode, int *contended) in try_to_compact_pages() argument
|
/linux-4.4.14/drivers/gpu/drm/msm/ |
D | msm_gem_submit.c | 141 int contended, slow_locked = -1, i, ret = 0; in submit_validate_objects() local 153 contended = i; in submit_validate_objects() 200 struct msm_gem_object *msm_obj = submit->bos[contended].obj; in submit_validate_objects() 205 submit->bos[contended].flags |= BO_LOCKED; in submit_validate_objects() 206 slow_locked = contended; in submit_validate_objects()
|
/linux-4.4.14/include/drm/ |
D | drm_modeset_lock.h | 51 struct drm_modeset_lock *contended; member
|
/linux-4.4.14/security/keys/ |
D | gc.c | 259 goto contended; in key_garbage_collector() 262 contended: in key_garbage_collector()
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-lock.txt | 50 Sorting key. Possible values: acquired (default), contended,
|
/linux-4.4.14/drivers/tty/ |
D | tty_ldsem.c | 331 lock_stat(sem, contended); in __ldsem_down_read_nested() 350 lock_stat(sem, contended); in __ldsem_down_write_nested()
|
/linux-4.4.14/Documentation/arm/ |
D | vlocks.txt | 84 * vlocks are not intended to be fair. In the contended case, it is the 147 reducing bus contention in contended cases.
|
/linux-4.4.14/arch/arm/common/ |
D | mcpm_head.S | 170 @ In the contended case, non-first men wait here for cluster setup
|
/linux-4.4.14/Documentation/locking/ |
D | lockstat.txt | 126 contended points (the lock holder). It is possible that the max
|
D | ww-mutex-design.txt | 36 The older tasks waits until it can acquire the contended lock. The younger tasks 77 slowpath until the contended lock can be acquired).
|
/linux-4.4.14/Documentation/ |
D | futex-requeue-pi.txt | 99 of the waiter and to enqueue the waiter on a contended rt_mutex.
|
D | robust-futexes.txt | 150 - with FUTEX_WAIT set [contended mutex]: 130 msecs
|
/linux-4.4.14/net/core/ |
D | dev.c | 2875 bool contended; in __dev_xmit_skb() local 2886 contended = qdisc_is_running(q); in __dev_xmit_skb() 2887 if (unlikely(contended)) in __dev_xmit_skb() 2905 if (unlikely(contended)) { in __dev_xmit_skb() 2907 contended = false; in __dev_xmit_skb() 2917 if (unlikely(contended)) { in __dev_xmit_skb() 2919 contended = false; in __dev_xmit_skb() 2925 if (unlikely(contended)) in __dev_xmit_skb()
|
/linux-4.4.14/tools/perf/ |
D | builtin-lock.c | 250 DEF_KEY_LOCK(contended, nr_contended),
|
/linux-4.4.14/drivers/staging/lustre/ |
D | sysfs-fs-lustre | 535 Controls for how long to consider a file contended once 537 When a file is considered contended, all operations switch to
|
/linux-4.4.14/Documentation/cgroups/ |
D | memory.txt | 645 heavily contended for, memory is allocated based on the soft limit
|
/linux-4.4.14/lib/ |
D | Kconfig.debug | 1046 CONFIG_LOCK_STAT defines "contended" and "acquired" lock events.
|