/Linux-v4.19/security/yama/ |
D | yama_lsm.c | 121 struct ptrace_relation *relation; in yama_relation_cleanup() local 125 list_for_each_entry_rcu(relation, &ptracer_relations, node) { in yama_relation_cleanup() 126 if (relation->invalid) { in yama_relation_cleanup() 127 list_del_rcu(&relation->node); in yama_relation_cleanup() 128 kfree_rcu(relation, rcu); in yama_relation_cleanup() 148 struct ptrace_relation *relation, *added; in yama_ptracer_add() local 160 list_for_each_entry_rcu(relation, &ptracer_relations, node) { in yama_ptracer_add() 161 if (relation->invalid) in yama_ptracer_add() 163 if (relation->tracee == tracee) { in yama_ptracer_add() 164 list_replace_rcu(&relation->node, &added->node); in yama_ptracer_add() [all …]
|
/Linux-v4.19/tools/memory-model/ |
D | lock.cat | 65 * until after the co relation has been generated. 90 * and then convert that relation to a set of single-edge relations. 93 let pair-to-relation p = p ++ 0 94 in map pair-to-relation ((LKW * {r}) & loc & ext) 114 let pair-to-relation p = p ++ 0 115 in map pair-to-relation (((UL | IW) * {r}) & loc & ext) 122 (* Final rf relation *)
|
D | linux-kernel.cat | 74 * No fences needed here for prop because relation confined to one process. 124 * a single constraint on an "executes-before" relation, xb:
|
/Linux-v4.19/include/linux/ |
D | cpufreq.h | 292 unsigned int relation); /* Deprecated */ 530 unsigned int relation); 533 unsigned int relation); 680 unsigned int relation); 900 unsigned int relation) in cpufreq_frequency_table_target() argument 904 relation); in cpufreq_frequency_table_target() 906 switch (relation) { in cpufreq_frequency_table_target() 914 pr_err("%s: Invalid relation: %d\n", __func__, relation); in cpufreq_frequency_table_target()
|
/Linux-v4.19/drivers/cpufreq/ |
D | freq_table.c | 118 unsigned int relation) in cpufreq_table_index_unsorted() argument 134 target_freq, relation, policy->cpu); in cpufreq_table_index_unsorted() 136 switch (relation) { in cpufreq_table_index_unsorted() 155 switch (relation) { in cpufreq_table_index_unsorted()
|
D | s3c24xx-cpufreq.c | 279 unsigned int relation) in s3c_cpufreq_target() argument 293 __func__, policy, target_freq, relation); in s3c_cpufreq_target() 297 relation); in s3c_cpufreq_target() 328 relation); in s3c_cpufreq_target()
|
D | unicore2-cpufreq.c | 39 unsigned int relation) in ucv2_target() argument
|
D | amd_freq_sensitivity.c | 43 unsigned int relation) in amd_powersave_bias_target() argument
|
D | cpufreq_governor.h | 174 unsigned int freq_next, unsigned int relation);
|
D | cpufreq_ondemand.c | 65 unsigned int freq_next, unsigned int relation) in generic_powersave_bias_target() argument 83 index = cpufreq_frequency_table_target(policy, freq_next, relation); in generic_powersave_bias_target()
|
D | sh-cpufreq.c | 83 unsigned int relation) in sh_cpufreq_target() argument
|
D | cpufreq.c | 1955 unsigned int relation) in __cpufreq_driver_target() argument 1967 policy->cpu, target_freq, relation, old_target_freq); in __cpufreq_driver_target() 1982 return cpufreq_driver->target(policy, target_freq, relation); in __cpufreq_driver_target() 1987 index = cpufreq_frequency_table_target(policy, target_freq, relation); in __cpufreq_driver_target() 1995 unsigned int relation) in cpufreq_driver_target() argument 2001 ret = __cpufreq_driver_target(policy, target_freq, relation); in cpufreq_driver_target()
|
D | cpufreq-nforce2.c | 253 unsigned int target_freq, unsigned int relation) in nforce2_target() argument
|
D | gx-suspmod.c | 377 unsigned int relation) in cpufreq_gx_target() argument
|
D | cppc_cpufreq.c | 135 unsigned int relation) in cppc_cpufreq_set_target() argument
|
/Linux-v4.19/Documentation/devicetree/bindings/iommu/ |
D | samsung,sysmmu.txt | 13 System MMUs are in many to one relation with peripheral devices, i.e. single 16 device. The relation between a System MMU and the peripheral device needs to be
|
/Linux-v4.19/tools/memory-model/Documentation/ |
D | explanation.txt | 328 The most important relation between events is program order (po). You 336 This is inherently a single-CPU relation; two instructions executing 340 po-loc is a sub-relation of po. It links two memory accesses when the 425 memory model cannot assume there is a fixed program order relation 433 We say that two events are linked by a dependency relation when the 496 The reads-from relation (rf) links a write event to a read event when 508 Usage of the rf relation implicitly assumes that loads will always 674 Just like the po relation, co is inherently an ordering -- it is not 676 just like with the rf relation, we distinguish between stores that 689 The from-reads relation (fr) can be a little difficult for people to [all …]
|
D | recipes.txt | 528 based on the relation between the accesses linking successive CPUs in a 533 this type of relation. In formal memory-modeling texts, this 534 relation is called "reads-from" and is usually abbreviated "rf". 538 of relation. In formal memory-modeling texts, this relation is 543 write-to-write relation between the last access of CPU1() and 545 this relation is often called "coherence order" and is sometimes
|
/Linux-v4.19/Documentation/devicetree/bindings/thermal/ |
D | thermal-generic-adc.txt | 12 to map the relation between ADC value and
|
D | thermal.txt | 146 Type: sub-node map nodes, used to describe the relation between trips 151 Type: array coefficients to compose a linear relation between 533 * linear relation. E.g.:
|
/Linux-v4.19/Documentation/core-api/ |
D | refcount-vs-atomic.rst | 35 program order (po) relation (on the same CPU). It guarantees that 63 a single CPU relation and provides no guarantees for other CPUs.
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-class-bdi | 37 writeout speed in relation to the other devices.
|
/Linux-v4.19/Documentation/cpu-freq/ |
D | cpu-drivers.txt | 190 unsigned int target_frequency, unsigned int relation. 197 - if relation==CPUFREQ_REL_L, try to select a new_freq higher than or equal 199 - if relation==CPUFREQ_REL_H, try to select a new_freq lower than or equal
|
/Linux-v4.19/Documentation/media/uapi/v4l/ |
D | audio.rst | 22 The relation of video and audio connectors is defined in the
|
/Linux-v4.19/Documentation/devicetree/bindings/mtd/ |
D | partition.txt | 21 significant relation between partitions or some partition internally uses
|