Home
last modified time | relevance | path

Searched refs:dependencies (Results 1 – 25 of 103) sorted by relevance

12345

/linux/scripts/
H A Ddev-needs.sh25 -c lists the compatible string of the dependencies
26 -d lists the driver name of the dependencies that have probed
27 -m lists the module name of the dependencies that have a module
28 -f list the firmware node path of the dependencies
29 -g list the dependencies as edges and nodes for graphviz
30 -t list the dependencies as edges for tsort
32 The filter options provide a way to filter out some dependencies:
33 --allow-no-driver By default dependencies that don't have a driver
41 dependencies.
/linux/tools/memory-model/Documentation/
H A Dcontrol-dependencies.txt4 A major difficulty with control dependencies is that current compilers
7 control dependencies also pose other challenges, which leads to the
11 One such challenge is that control dependencies order only later stores.
32 (usually) guaranteed for load-store control dependencies, as in the
39 Control dependencies can pair with each other and with other types
59 It is tempting to try use control dependencies to enforce ordering on
145 to relying on control dependencies to produce this ordering, you should
182 In addition, control dependencies apply only to the then-clause and
208 The control dependencies would then extend only to the pair of cmov
211 "a" and the store to "c". In short, control dependencies provide ordering
[all …]
H A DREADME37 and cannot do to control dependencies: control-dependencies.txt
71 control-dependencies.txt
73 your control dependencies.
H A Dglossary.txt10 Address dependencies are quite common in RCU read-side critical
22 dependencies. Please see Documentation/RCU/rcu_dereference.rst
63 line 1 to the WRITE_ONCE() on line 2. Control dependencies are
65 Please see control-dependencies.txt for more information.
96 on line 1 to the WRITE_ONCE() on line 2. Data dependencies are
/linux/tools/testing/selftests/kvm/x86/
H A Dxcr0_cpuid_test.c22 #define ASSERT_XFEATURE_DEPENDENCIES(supported_xcr0, xfeatures, dependencies) \ argument
24 uint64_t __supported = (supported_xcr0) & ((xfeatures) | (dependencies)); \
27 __supported == ((xfeatures) | (dependencies)), \
29 __supported, (xfeatures), (dependencies)); \
/linux/Documentation/kbuild/
H A DKconfig.select-break17 # visit the dependencies of the select target (in this case B). And since
18 # Kconfig does not visit the dependencies, it breaks the dependencies of B
H A Dkconfig-language.rst24 Every entry has its own dependencies. These dependencies are used
44 the config option, input prompt, dependencies, help text and default
72 to the user. Optionally dependencies only for this prompt can be added
90 Optionally, dependencies only for this default value can be added with
119 Optionally dependencies for this default value can be added with "if".
121 - dependencies: "depends on" <expr> ["if" <expr>]
124 dependencies are defined, they are connected with '&&'. Dependencies
147 - reverse dependencies: "select" <symbol> ["if" <expr>]
149 While normal dependencies reduce the upper limit of a symbol (see
150 below), reverse dependencies can be used to force a lower limit of
[all …]
/linux/Documentation/admin-guide/
H A Dinit.rst23 4) **Binary exists but dependencies not available**: E.g. required library
24 dependencies of the init binary such as ``/lib/ld-linux.so.2`` missing or
33 library dependencies). And before tackling scripts, better first test a
/linux/drivers/gpu/drm/xe/
H A Dxe_tlb_inval_job.c212 xe_assert(gt_to_xe(job->q->gt), !xa_load(&job->dep.drm.dependencies, 0)); in xe_tlb_inval_job_alloc_dep()
249 xa_load(&job->dep.drm.dependencies, 0) == in xe_tlb_inval_job_push()
253 ptr = xa_store(&job->dep.drm.dependencies, 0, fence, in xe_tlb_inval_job_push()
H A D.kunitconfig1 # xe dependencies
/linux/drivers/gpu/drm/scheduler/
H A Dsched_entity.c186 xa_for_each(&job->dependencies, index, f) { in drm_sched_entity_kill_jobs_work()
204 xa_erase(&job->dependencies, index); in drm_sched_entity_kill_jobs_work()
452 f = xa_load(&job->dependencies, job->last_dependency); in drm_sched_job_dependency()
588 xa_for_each(&sched_job->dependencies, index, entry) in drm_sched_entity_push_job()
H A Dsched_main.c835 xa_init_flags(&job->dependencies, XA_FLAGS_ALLOC); in drm_sched_job_init()
899 xa_for_each(&job->dependencies, index, entry) { in drm_sched_job_add_dependency()
905 xa_store(&job->dependencies, index, fence, GFP_KERNEL); in drm_sched_job_add_dependency()
912 ret = xa_alloc(&job->dependencies, &id, fence, xa_limit_32b, GFP_KERNEL); in drm_sched_job_add_dependency()
1022 xa_for_each(&job->dependencies, index, f) { in drm_sched_job_has_dependency()
1067 xa_for_each(&job->dependencies, index, fence) { in drm_sched_job_cleanup()
1070 xa_destroy(&job->dependencies); in drm_sched_job_cleanup()
/linux/samples/bpf/
H A DREADME.rst13 Build dependencies
44 There are usually dependencies to header files of the current kernel.
80 (build dependencies are ninja, cmake and gcc-c++)::
/linux/mm/kfence/
H A D.kunitconfig5 # Additional dependencies.
/linux/scripts/kconfig/tests/conditional_dep/
H A Dtest_config34 # so it has no dependencies.
H A DKconfig2 # Test Kconfig file for conditional dependencies.
/linux/tools/testing/selftests/futex/
H A DREADME30 o External dependencies shall remain as minimal as possible. Currently gcc
31 and glibc are the only dependencies.
/linux/Documentation/locking/
H A Dlockdep-design.rst20 the dependencies between different lock-classes. Lock usage indicates
26 continuing effort to prove lock usages and dependencies are correct or
32 class and hence their usages and dependencies will contribute to those of
156 Furthermore, the following usage based lock dependencies are not allowed
192 Exception: Nested data dependencies leading to nested locking
302 single-task locking dependencies in the kernel as possible, at least
514 Lock dependencies record the orders of the acquisitions of a pair of locks, and
516 dependencies, but we can show that 4 types of lock dependencies are enough for
551 Note that given two locks, they may have multiple dependencies between them,
572 in the path, as the path that doesn't have two conjunct edges (dependencies) as
[all …]
/linux/Documentation/RCU/
H A Drcu_dereference.rst6 Proper care and feeding of address and data dependencies is critically
9 data dependencies. These dependencies extend from the rcu_dereference()
15 Most of the time, these dependencies are preserved, permitting you to
20 either address or data dependencies into account it is still possible
23 Follow these rules to preserve the address and data dependencies emanating
53 trust it to carry dependencies through integer operations.
193 That said, it is easy to get control dependencies wrong.
/linux/tools/memory-model/litmus-tests/
H A Ddep+plain.litmus7 * carry dependencies much like accesses to registers:
/linux/Documentation/translations/zh_CN/admin-guide/
H A Dinit.rst34 4) **二进制存在但依赖项不可用Binary exists but dependencies not available** :
/linux/drivers/net/wireless/ti/
H A DKconfig18 # keep last for automatic dependencies
/linux/Documentation/translations/zh_TW/admin-guide/
H A Dinit.rst37 4) **二進制存在但依賴項不可用Binary exists but dependencies not available** :
/linux/Documentation/gpu/
H A Ddrm-vm-bind-async.rst115 not affect using dma-fences as dependencies for the long-running
124 there are no explicit dependencies. In order to circumvent such a queue-up, a
131 parallel. There may be internal implicit dependencies that only KMD knows
133 to avoid such internal dependencies is to have different VM_BIND
177 implicit dependencies to be fulfilled.
/linux/Documentation/
H A DKconfig9 This option makes the Kernel to check for missing dependencies,

12345