/linux-4.1.27/drivers/gpu/drm/ |
D | drm_agpsupport.c | 59 if (!dev->agp || !dev->agp->acquired) in drm_agp_info() 104 if (dev->agp->acquired) in drm_agp_acquire() 108 dev->agp->acquired = 1; in drm_agp_acquire() 142 if (!dev->agp || !dev->agp->acquired) in drm_agp_release() 145 dev->agp->acquired = 0; in drm_agp_release() 168 if (!dev->agp || !dev->agp->acquired) in drm_agp_enable() 206 if (!dev->agp || !dev->agp->acquired) in drm_agp_alloc() 278 if (!dev->agp || !dev->agp->acquired) in drm_agp_unbind() 319 if (!dev->agp || !dev->agp->acquired) in drm_agp_bind() 362 if (!dev->agp || !dev->agp->acquired) in drm_agp_free() [all …]
|
/linux-4.1.27/include/linux/ |
D | ww_mutex.h | 30 unsigned acquired; member 124 ctx->acquired = 0; in ww_acquire_init() 175 DEBUG_LOCKS_WARN_ON(ctx->acquired); in ww_acquire_fini() 185 ctx->acquired = ~0U; in ww_acquire_fini()
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | evglock.c | 208 u8 acquired = FALSE; in acpi_ev_acquire_global_lock() local 251 ACPI_ACQUIRE_GLOBAL_LOCK(acpi_gbl_FACS, acquired); in acpi_ev_acquire_global_lock() 252 if (acquired) { in acpi_ev_acquire_global_lock()
|
/linux-4.1.27/drivers/i2c/busses/ |
D | i2c-designware-baytrail.c | 30 static unsigned long acquired; variable 93 acquired = jiffies; in baytrail_i2c_acquire() 127 jiffies_to_msecs(jiffies - acquired)); in baytrail_i2c_release()
|
/linux-4.1.27/kernel/locking/ |
D | mutex.c | 137 DEBUG_LOCKS_WARN_ON(ww_ctx->acquired > 0); in ww_mutex_lock_acquired() 146 ww_ctx->acquired++; in ww_mutex_lock_acquired() 325 if (use_ww_ctx && ww_ctx->acquired > 0) { in mutex_optimistic_spin() 461 DEBUG_LOCKS_WARN_ON(!lock->ctx->acquired); in ww_mutex_unlock() 463 if (lock->ctx->acquired > 0) in ww_mutex_unlock() 464 lock->ctx->acquired--; in ww_mutex_unlock() 571 if (use_ww_ctx && ww_ctx->acquired > 0) { in __mutex_lock_common() 689 if (!ret && ctx->acquired > 1) in __ww_mutex_lock() 705 if (!ret && ctx->acquired > 1) in __ww_mutex_lock_interruptible()
|
/linux-4.1.27/drivers/tty/ |
D | tty_ldsem.c | 336 lock_stat(sem, acquired); in __ldsem_down_read_nested() 355 lock_stat(sem, acquired); in __ldsem_down_write_nested() 379 lock_stat(sem, acquired); in ldsem_down_read_trylock() 405 lock_stat(sem, acquired); in ldsem_down_write_trylock()
|
/linux-4.1.27/Documentation/filesystems/ |
D | directory-locking | 64 the order until we had acquired all locks). 66 (3) locks on non-directory objects are acquired only after locks on 67 directory objects, and are acquired in inode pointer order. 101 to (2) the order hadn't changed since we had acquired filesystem lock. 115 we had acquired filesystem lock and rename() would fail with -ELOOP in that
|
D | afs.txt | 207 not acquired then all operations will be governed by the anonymous user parts 210 If a key is acquired, then all AFS operations, including mounts and automounts,
|
D | dlmfs.txt | 67 request for an already acquired lock will not generate another DLM
|
D | path-lookup.txt | 16 Prior to 2.5.10, dcache_lock was acquired in d_lookup (dcache hash lookup) and
|
D | Locking | 378 be entirely unrelated to the one on which the lock is being acquired.
|
D | vfs.txt | 957 This is called when a path-walk ends at dentry that was not acquired by
|
D | proc.txt | 1213 autoprobe Any IEEE-1284 device ID information that has been acquired.
|
/linux-4.1.27/Documentation/locking/ |
D | ww-mutex-design.txt | 48 acquired when starting the lock acquisition. This ticket is stored in the 60 after having dropped all already acquired locks. These functions have the 65 contending lock (after having dropped all other already acquired locks) will 66 work correctly. After all if no other ww mutex has been acquired yet there's 74 - When full debugging is enabled ww_mutex_lock_slow checks that all acquired 77 slowpath until the contended lock can be acquired). 234 objects acquired with the fixed list. But the w/w mutex debug checks will catch
|
D | lockdep-design.txt | 57 '.' acquired while irqs disabled and not in irq context 58 '-' acquired in irq context 59 '+' acquired with irqs enabled 60 '?' acquired in irq context with irqs enabled. 81 The same lock-class must not be acquired twice, because this could lead
|
D | locktorture.txt | 119 (C): Number of times the lock was acquired.
|
D | mutex-design.txt | 76 (iii) slowpath: last resort, if the lock is still unable to be acquired,
|
/linux-4.1.27/include/acpi/platform/ |
D | acenv.h | 251 #define ACPI_ACQUIRE_GLOBAL_LOCK(Glptr, acquired) acquired = 1 argument
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-lock.txt | 50 Sorting key. Possible values: acquired (default), contended,
|
/linux-4.1.27/Documentation/RCU/ |
D | UP.txt | 109 Any lock that is acquired within an RCU callback must be 110 acquired elsewhere using an _irq variant of the spinlock 111 primitive. For example, if "mylock" is acquired by an
|
D | checklist.txt | 74 locks (that are acquired by both readers and writers) 77 some other lock acquired only by updaters, if desired. 197 a CPU-hotplug notifier, or while holding a lock that is acquired 336 12. Any lock acquired by an RCU callback must be acquired elsewhere
|
D | whatisRCU.txt | 277 it was acquired is just as illegal as doing so with normal 611 be recursively acquired. Note also that rcu_read_lock() is immune
|
/linux-4.1.27/Documentation/driver-model/ |
D | devres.txt | 56 drivers using devres. For example, coherent DMA memory is acquired 99 detached. If most resources are acquired using managed interface, a 141 groups are released. One usage is to rollback series of acquired
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_agp.c | 192 if (dev->agp && dev->agp->acquired) in nouveau_agp_fini()
|
/linux-4.1.27/include/drm/ |
D | drm_agpsupport.h | 24 int acquired; member
|
/linux-4.1.27/Documentation/ |
D | futex-requeue-pi.txt | 70 /* the kernel acquired the mutex for us */ 120 the lock can be acquired at this stage as well, if so, the next
|
D | robust-futexes.txt | 8 noncontended case can be acquired/released from userspace without having 105 list is done after the futex is acquired by glibc, there is a few 195 Otherwise, robust futexes are acquired by glibc by putting the TID into
|
D | preempt-locking.txt | 57 A lock acquired in one task must be released by the same task. This
|
D | pi-futex.txt | 98 blocks. Once it returns, it has the mutex acquired, and it sets the
|
D | parport.txt | 169 acquired from the (non-IEEE 1284.3) device.
|
D | atomic_ops.txt | 630 spinlock being acquired.
|
D | kernel-docs.txt | 373 access them, how each lock is acquired, under what conditions it
|
D | DMA-API-HOWTO.txt | 116 If you acquired your memory via the page allocator
|
D | devices.txt | 3318 are acquired in the following order, and released in the reverse:
|
D | kernel-parameters.txt | 3409 and the less frequently locks need to be acquired.
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_agp.c | 273 if (rdev->ddev->agp && rdev->ddev->agp->acquired) { in radeon_agp_fini()
|
/linux-4.1.27/drivers/block/paride/ |
D | Transition-notes | 46 the moment when pi_spinlock has been acquired. 86 0 when pd_next_buf() had acquired pd_lock. If it become 0 while
|
/linux-4.1.27/Documentation/arm/Marvell/ |
D | README | 188 Intel and acquired by Marvell in ~2006. The PXA21x, PXA25x, 226 Intel and acquired by Marvell in ~2006. All the processors of
|
/linux-4.1.27/Documentation/gpio/ |
D | consumer.txt | 128 from an array acquired with gpiod_get_array(). 336 gpio_to_desc() must have been properly acquired, and usage of the returned GPIO
|
/linux-4.1.27/scripts/ |
D | spelling.txt | 34 accquired||acquired 104 aquired||acquired
|
/linux-4.1.27/fs/jffs2/ |
D | README.Locking | 118 c->erase_completion has to be acquired first.
|
/linux-4.1.27/Documentation/crypto/ |
D | async-tx-api.txt | 119 acquired twice in the asynchronous case.
|
/linux-4.1.27/fs/ocfs2/ |
D | dlmglue.c | 2324 int status, level, acquired; in ocfs2_inode_lock_full_nested() local 2337 acquired = 0; in ocfs2_inode_lock_full_nested() 2367 acquired = 1; in ocfs2_inode_lock_full_nested() 2416 if (acquired) in ocfs2_inode_lock_full_nested()
|
/linux-4.1.27/tools/perf/ |
D | builtin-lock.c | 249 DEF_KEY_LOCK(acquired, nr_acquired),
|
/linux-4.1.27/Documentation/scsi/ |
D | FlashPoint.txt | 103 especially when a company is being acquired, and so it's taken until now
|
D | scsi_eh.txt | 307 reaches here, sense data is acquired and
|
D | BusLogic.txt | 22 BusLogic was acquired by Mylex Corporation in February 1996, but the products
|
/linux-4.1.27/Documentation/power/ |
D | suspend-and-cpuhotplug.txt | 102 It is to be noted here that the pm_mutex lock is acquired at the very
|
D | freezing-of-tasks.txt | 215 successfully acquired the 'pm_mutex' lock, and hence that other entity failed
|
/linux-4.1.27/Documentation/trace/ |
D | coresight.txt | 172 The next field, "struct coresight_platform_data *pdata" is acquired by calling
|
/linux-4.1.27/Documentation/development-process/ |
D | 4.Coding | 257 mutex) in the system, the order in which locks are acquired relative to 259 ensure that locks are always acquired in the same order, that the same
|
/linux-4.1.27/drivers/gpu/drm/mga/ |
D | mga_dma.c | 966 if ((dev->agp != NULL) && dev->agp->acquired) in mga_do_cleanup_dma()
|
/linux-4.1.27/Documentation/networking/ |
D | ixgb.txt | 173 originally acquired from settings published at http://www.spec.org/web99/ for
|
/linux-4.1.27/Documentation/rapidio/ |
D | rapidio.txt | 250 is successfully acquired, the enumerator allocates a new rio_dev structure and
|
/linux-4.1.27/lib/ |
D | locking-selftest.c | 1286 t.acquired = 0; in ww_test_object_lock_unbalanced()
|
D | Kconfig.debug | 1037 CONFIG_LOCK_STAT defines "contended" and "acquired" lock events.
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Cards | 854 acquired by Singapore Technologies
|
/linux-4.1.27/Documentation/video4linux/ |
D | v4l2-framework.txt | 309 A reference to the entity will be automatically acquired/released when the 708 A reference to the entity will be automatically acquired/released when the
|
/linux-4.1.27/Documentation/vm/ |
D | unevictable-lru.txt | 545 If the mmap semaphore cannot be acquired, we are not sure whether the page
|
/linux-4.1.27/drivers/scsi/qla2xxx/ |
D | qla_init.c | 1308 goto acquired; in qla25xx_manipulate_risc_semaphore() 1331 acquired: in qla25xx_manipulate_risc_semaphore()
|