Searched refs:dependencies (Results 1 - 9 of 9) sorted by relevance

/linux-master/tools/testing/selftests/kvm/x86_64/
H A Dxcr0_cpuid_test.c22 #define ASSERT_XFEATURE_DEPENDENCIES(supported_xcr0, xfeatures, dependencies) \
24 uint64_t __supported = (supported_xcr0) & ((xfeatures) | (dependencies)); \
27 __supported == ((xfeatures) | (dependencies)), \
28 "supported = 0x%lx, xfeatures = 0x%llx, dependencies = 0x%llx", \
29 __supported, (xfeatures), (dependencies)); \
/linux-master/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.
44 dependencies
[all...]
H A Dsphinx-pre-install683 # That's far from ideal, specially for LaTeX dependencies.
692 print "There are likely missing dependencies.\n";
696 # Common dependencies
967 die "Can't build as $need mandatory dependencies are missing";
980 print "All optional dependencies are met.\n" if (!$optional);
985 die "Can't build as $need mandatory dependencies are missing";
988 print "Needed package dependencies are met.\n";
1008 print "\t--version-check\t- if version is compatible, don't check for missing dependencies\n";
1009 print "\t--no-pdf\t- don't check for dependencies required to build PDF docs\n\n";
H A Dget_feat.pl592 track dependencies during documentation build.
/linux-master/drivers/gpu/drm/scheduler/
H A Dsched_entity.c205 /* Wait for all dependencies to avoid data corruptions */
206 xa_for_each(&job->dependencies, index, f) {
210 /* The dependencies array had a reference on the scheduled
218 * we can release the reference the dependencies array
224 xa_erase(&job->dependencies, index);
458 /* We keep the fence around, so we can iterate over all dependencies
462 f = xa_load(&job->dependencies, job->last_dependency);
H A Dsched_main.c33 * returning the dependencies of a job etc.
817 xa_init_flags(&job->dependencies, XA_FLAGS_ALLOC);
855 * @job: scheduler job to add the dependencies to
856 * @fence: the dma_fence to add to the list of dependencies.
878 xa_for_each(&job->dependencies, index, entry) {
884 xa_store(&job->dependencies, index, fence, GFP_KERNEL);
891 ret = xa_alloc(&job->dependencies, &id, fence, xa_limit_32b, GFP_KERNEL);
901 * @job: scheduler job to add the dependencies to
929 * @job: scheduler job to add the dependencies to
963 * drm_sched_job_add_implicit_dependencies - adds implicit dependencies a
[all...]
/linux-master/include/drm/
H A Dgpu_scheduler.h281 * from run_job() won't be created until the dependencies have
360 * @dependencies:
362 * Contains the dependencies as struct dma_fence for this job, see
366 struct xarray dependencies; member in struct:drm_sched_job
368 /** @last_dependency: tracks @dependencies as they signal */
405 * Can be NULL if no additional preparation to the dependencies are
412 * @run_job: Called to execute the job once all of the dependencies
/linux-master/drivers/gpu/drm/imagination/
H A Dpvr_queue.c350 * job_count_remaining_native_deps() - Count the number of non-signaled native dependencies.
361 xa_for_each(&job->base.dependencies, index, fence) {
401 /* Count remaining native dependencies and check if the job fits in the CCCB. */
471 xa_for_each(&frag_job->base.dependencies, index, f) {
487 * pvr_queue_prepare_job() - Return the next internal dependencies expressed as a dma_fence.
491 * After iterating over drm_sched_job::dependencies, drm_sched let the driver return
492 * its own internal dependencies. We use this function to return our internal dependencies.
618 xa_for_each(&job->base.dependencies, index, fence) {
683 * This function is called when all non-native dependencies hav
[all...]
H A Dpvr_job.c619 xa_for_each(&frag_job->base.dependencies, index, fence) {

Completed in 145 milliseconds