Searched refs:locking (Results 1 – 25 of 216) sorted by relevance
123456789
/Linux-v6.6/tools/memory-model/Documentation/ |
D | simple.txt | 39 This approach is called "code locking". 41 Code locking can severely limit both performance and scalability, so it 47 One of the advantages of locking is that, in happy contrast with the 48 year 1981, almost all kernel developers are very familiar with locking. 52 Please use the standard locking primitives provided by the kernel rather 58 locking functions must carefully prevent both the CPU and the compiler 59 from moving code in either direction across the locking function. 86 Data locking 89 With code locking, we use single-threaded code execution to guarantee 104 As the number of buckets increases, data locking scales naturally. [all …]
|
D | locking.txt | 16 The basic rule of locking is worth repeating: 82 locking basic rule extend across multiple acquisitions of a given lock 90 double-checked locking work correctly, This litmus test illustrates 93 /* See Documentation/litmus-tests/locking/DCL-broken.litmus. */ 118 /* See Documentation/litmus-tests/locking/DCL-fixed.litmus. */ 151 It is not necessarily the case that accesses ordered by locking will be 232 /* See Documentation/litmus-tests/locking/RM-fixed.litmus. */ 269 /* See Documentation/litmus-tests/locking/RM-broken.litmus. */
|
/Linux-v6.6/fs/gfs2/ |
D | Kconfig | 22 the locking module below. Documentation and utilities for GFS2 can 29 bool "GFS2 DLM locking" 33 Multiple node locking module for GFS2 35 Most users of GFS2 will require this. It provides the locking
|
/Linux-v6.6/Documentation/translations/zh_CN/locking/ |
D | index.rst | 4 :Original: Documentation/locking/index.rst 30 * preempt-locking
|
D | mutex-design.rst | 4 :Original: Documentation/locking/mutex-design.rst 37 kernel/locking/mutex.c中实现。这些锁使用一个原子变量(->owner)来跟踪
|
/Linux-v6.6/Documentation/locking/ |
D | lockdep-design.rst | 1 Runtime locking correctness validator 14 respect to locking rules, even if the locks may have multiple (possibly 51 where the n STATEs are coded in kernel/locking/lockdep_states.h and as of 61 When locking rules are violated, these usage bits are presented in the 62 locking error messages, inside curlies, with a total of 2 * n STATEs bits. 152 i.e., there can be any other locking sequence between the acquire-lock 168 The above rules are enforced for any locking sequence that occurs in the 192 Exception: Nested data dependencies leading to nested locking 202 An example of such an object hierarchy that results in "nested locking" 207 automatically detect this natural ordering, as the locking rule behind [all …]
|
D | percpu-rw-semaphore.rst | 6 optimized for locking for reading. 14 instruction in the lock and unlock path. On the other hand, locking for
|
D | preempt-locking.rst | 12 A preemptible kernel creates new locking issues. The issues are the same as 14 kernel model leverages existing SMP locking mechanisms. Thus, the kernel 15 requires explicit additional locking for very few additional situations. 32 First, since the data is per-CPU, it may not have explicit SMP locking, but 132 in doubt, rely on locking or explicit preemption disabling.
|
D | pi-futex.rst | 18 recursive locking, etc. 26 improve the statistical distribution of locking related application 54 to think about how to offer the option of a deterministic locking 62 problems as other user-space locking constructs). Fact is, pretty much 122 Documentation/locking/rt-mutex.rst.
|
D | locktorture.rst | 9 that runs torture tests on core kernel locking primitives. The kernel 76 Torture-framework (RCU + locking) 145 -only- be positive if there is a bug in the locking primitive's 167 were no locking failures, CPU-hotplug problems were detected.
|
D | seqlock.rst | 206 2. Locking readers which will wait if a writer or another locking reader 207 is in progress. A locking reader in progress will also block a writer 209 exclusive. Unlike rwlock_t, only one locking reader can acquire it:: 217 3. Conditional lockless reader (as in 1), or locking reader (as in 2), 223 full locking read and no retry loop is necessary::
|
D | rt-mutex.rst | 7 (PTHREAD_PRIO_INHERIT). [See Documentation/locking/pi-futex.rst for more details 41 locking overhead when locking an uncontended mutex or unlocking a mutex
|
/Linux-v6.6/Documentation/litmus-tests/locking/ |
D | DCL-broken.litmus | 6 * This litmus test demonstrates more than just locking is required to 7 * correctly implement double-checked locking.
|
D | DCL-fixed.litmus | 6 * This litmus test demonstrates that double-checked locking can be 8 * in addition to the locking.
|
/Linux-v6.6/Documentation/filesystems/ |
D | locking.rst | 5 The text below describes the locking rules for VFS-related methods. 7 prototypes or locking protocols - update this file. And update the relevant 34 locking rules: 90 locking rules: 127 See Documentation/filesystems/directory-locking.rst for more detailed discussion 128 of the locking scheme for directory operations. 144 locking rules: 178 locking rules: 213 writes to quota files with quotas on). For other details about locking 225 locking rules: [all …]
|
D | index.rst | 25 locking 26 directory-locking
|
D | dlmfs.rst | 41 dlmfs for easy to setup and easy to use clustered locking in 69 system calls and presents a more traditional locking api. 74 locking. 140 For more information on the VMS distributed locking API.
|
D | gfs2.rst | 15 GFS2 uses interchangeable inter-node locking mechanisms, the currently 22 - uses the distributed lock manager (dlm) for inter-node locking.
|
/Linux-v6.6/Documentation/networking/devlink/ |
D | index.rst | 11 locking. Drivers can use the existing ``devlink_*`` set of APIs, or 12 new APIs prefixed by ``devl_*``. The older APIs handle all the locking
|
/Linux-v6.6/Documentation/kernel-hacking/ |
D | index.rst | 11 locking
|
/Linux-v6.6/Documentation/driver-api/soundwire/ |
D | index.rst | 11 locking
|
/Linux-v6.6/Documentation/pcmcia/ |
D | index.rst | 12 locking
|
/Linux-v6.6/Documentation/translations/zh_CN/kernel-hacking/ |
D | index.rst | 22 - locking
|
/Linux-v6.6/Documentation/sound/cards/ |
D | img-spdif-in.rst | 43 This control is used to modify the locking/jitter rejection characteristics 44 of the block. Larger values increase the locking range, but reduce jitter
|
/Linux-v6.6/Documentation/virt/kvm/ |
D | index.rst | 18 locking
|
123456789