/linux-6.3-rc2/kernel/sched/ |
A D | loadavg.c | 71 void get_avenrun(unsigned long *loads, unsigned long offset, int shift) in get_avenrun() argument 73 loads[0] = (avenrun[0] + offset) << shift; in get_avenrun() 74 loads[1] = (avenrun[1] + offset) << shift; in get_avenrun() 75 loads[2] = (avenrun[2] + offset) << shift; in get_avenrun()
|
/linux-6.3-rc2/tools/testing/selftests/net/ |
A D | devlink_port_split.py | 60 ports = json.loads(stdout)['port'] 82 values = list(json.loads(stdout)['port'].values())[0] 100 values = list(json.loads(stdout)['port'].values())[0] 243 devs = json.loads(stdout)['dev']
|
/linux-6.3-rc2/arch/powerpc/perf/ |
A D | power9-pmu.c | 174 GENERIC_EVENT_ATTR(mem-loads, MEM_LOADS); 178 CACHE_EVENT_ATTR(L1-dcache-loads, PM_LD_REF_L1); 182 CACHE_EVENT_ATTR(L1-icache-loads, PM_INST_FROM_L1); 185 CACHE_EVENT_ATTR(LLC-loads, PM_DATA_FROM_L3); 188 CACHE_EVENT_ATTR(branch-loads, PM_BR_CMPL);
|
A D | power8-pmu.c | 134 CACHE_EVENT_ATTR(L1-dcache-loads, PM_LD_REF_L1); 139 CACHE_EVENT_ATTR(L1-icache-loads, PM_INST_FROM_L1); 143 CACHE_EVENT_ATTR(LLC-loads, PM_DATA_FROM_L3); 149 CACHE_EVENT_ATTR(branch-loads, PM_BRU_FIN);
|
A D | power10-pmu.c | 127 GENERIC_EVENT_ATTR(mem-loads, MEM_LOADS); 134 CACHE_EVENT_ATTR(L1-dcache-loads, PM_LD_REF_L1); 138 CACHE_EVENT_ATTR(L1-icache-loads, PM_INST_FROM_L1); 141 CACHE_EVENT_ATTR(LLC-loads, PM_DATA_FROM_L3); 146 CACHE_EVENT_ATTR(branch-loads, PM_BR_CMPL);
|
/linux-6.3-rc2/tools/perf/Documentation/ |
A D | perf-mem.txt | 19 right set of options to display a memory access profile. By default, loads 20 and stores are sampled. Use the -t option to limit to loads or stores. 93 Specify desired latency for loads event. Supported on Intel and Arm64
|
/linux-6.3-rc2/Documentation/devicetree/bindings/net/ |
A D | qcom,ipa.yaml | 134 Indicates how GSI firmware should be loaded. If the AP loads 144 should be loaded. If present, the modem loads GSI firmware; if 145 absent, the AP loads GSI firmware. 180 # If qcom,gsi-loader is "self", the AP loads GSI firmware, and 192 # If modem-init is not present, the AP loads GSI firmware, and
|
/linux-6.3-rc2/arch/alpha/lib/ |
A D | ev6-copy_user.S | 64 EXI( ldbu $1,0($17) ) # .. .. .. L : Keep loads separate from stores 116 EXI ( ldbu $2,0($17) ) # .. .. .. L : No loads in the same quad 203 EXI ( ldbu $2,0($17) ) # .. .. .. L : No loads in the same quad
|
/linux-6.3-rc2/Documentation/translations/zh_CN/mm/ |
A D | frontswap.rst | 49 ``loads`` 143 入都被 “frontswap backend store” 和(可能)“frontswap backend loads”
|
/linux-6.3-rc2/include/uapi/linux/ |
A D | sysinfo.h | 10 __kernel_ulong_t loads[3]; /* 1, 5, and 15 minute load averages */ member
|
/linux-6.3-rc2/include/linux/sched/ |
A D | loadavg.h | 16 extern void get_avenrun(unsigned long *loads, unsigned long offset, int shift);
|
/linux-6.3-rc2/Documentation/x86/ |
A D | tsx_async_abort.rst | 13 case certain loads may speculatively pass invalid data to dependent operations 15 Synchronization Extensions (TSX) transaction. This includes loads with no 16 fault or assist condition. Such loads may speculatively expose stale data from
|
/linux-6.3-rc2/Documentation/core-api/ |
A D | refcount-vs-atomic.rst | 41 A strong (full) memory ordering guarantees that all prior loads and 49 A RELEASE memory ordering guarantees that all prior loads and 57 An ACQUIRE memory ordering guarantees that all post loads and
|
/linux-6.3-rc2/tools/perf/util/ |
A D | parse-events.l | 368 mem-loads | 369 mem-loads-aux | 383 load|loads|read |
|
/linux-6.3-rc2/tools/testing/selftests/kvm/x86_64/ |
A D | pmu_event_filter_test.c | 461 uint64_t loads:22; member 491 c.loads = ld1 - ld0; in masked_events_guest_test() 693 TEST_ASSERT(bool_eq(c.loads, test->flags & ALLOW_LOADS) && in run_masked_events_tests() 698 test->msg, c.loads, c.stores, c.loads_stores); in run_masked_events_tests()
|
/linux-6.3-rc2/Documentation/ |
A D | memory-barriers.txt | 388 to have any effect on loads. 409 loads or overlapping loads. 714 load from 'a' with other loads from 'a'. Without the WRITE_ONCE(), 891 Not prior loads against later loads, nor prior stores against 894 later loads, smp_mb(). 1037 dependent loads. Consider the following sequence of events: 1119 subsequent loads +-------+ | | 1766 The compiler can also invent loads. These are usually less 1769 invented loads. 2229 the other hand, a wakeup does not occur, both loads might see 0. [all …]
|
/linux-6.3-rc2/tools/memory-model/Documentation/ |
A D | control-dependencies.txt | 42 fuse the load from "a" with other loads. Without the WRITE_ONCE(), 219 (*) Control dependencies can order prior loads against later stores. 221 Not prior loads against later loads, nor prior stores against 224 stores and later loads, smp_mb().
|
A D | explanation.txt | 79 code to run in such a way that the loads will indeed obtain the 196 Since r1 = 1, P0 must store 1 to flag before P1 loads 1 from 197 it, as loads can obtain values only from earlier stores. 271 X: P1 loads 1 from flag executes before 272 Y: P1 loads 0 from buf executes before 292 Read events correspond to loads from shared memory, such as 836 smp_rmb() forces the CPU to execute all po-earlier loads 837 before any po-later loads; 985 CPU 0 loads x obtaining 13; 986 CPU 1 loads x obtaining 13; [all …]
|
/linux-6.3-rc2/tools/net/ynl/ |
A D | cli.py | 29 attrs = json.loads(args.json_text)
|
/linux-6.3-rc2/kernel/debug/kdb/ |
A D | kdb_main.c | 2489 val->loads[0] = avenrun[0]; in kdb_sysinfo() 2490 val->loads[1] = avenrun[1]; in kdb_sysinfo() 2491 val->loads[2] = avenrun[2]; in kdb_sysinfo() 2528 LOAD_INT(val.loads[0]), LOAD_FRAC(val.loads[0]), in kdb_summary() 2529 LOAD_INT(val.loads[1]), LOAD_FRAC(val.loads[1]), in kdb_summary() 2530 LOAD_INT(val.loads[2]), LOAD_FRAC(val.loads[2])); in kdb_summary()
|
/linux-6.3-rc2/arch/mips/include/asm/ |
A D | mips-r2-to-r6-emul.h | 22 u64 loads; member
|
/linux-6.3-rc2/arch/mips/kernel/ |
A D | mips-r2-to-r6-emul.c | 1274 MIPS_R2_STATS(loads); in mipsr2_decoder() 1348 MIPS_R2_STATS(loads); in mipsr2_decoder() 1608 MIPS_R2_STATS(loads); in mipsr2_decoder() 1727 MIPS_R2_STATS(loads); in mipsr2_decoder() 2267 (unsigned long)__this_cpu_read(mipsr2emustats.loads), in mipsr2_emul_show() 2268 (unsigned long)__this_cpu_read(mipsr2bdemustats.loads)); in mipsr2_emul_show() 2324 __this_cpu_write((mipsr2emustats).loads, 0); in mipsr2_clear_show() 2325 __this_cpu_write((mipsr2bdemustats).loads, 0); in mipsr2_clear_show()
|
/linux-6.3-rc2/tools/perf/tests/shell/lib/ |
A D | perf_json_output_lint.py | 62 for item in json.loads(input):
|
/linux-6.3-rc2/Documentation/devicetree/bindings/sound/ |
A D | richtek,rt9120.yaml | 14 delivering 2*20W into 8 Ohm BTL speaker loads. It supports the wide input
|
/linux-6.3-rc2/Documentation/devicetree/bindings/mfd/ |
A D | x-powers,axp152.yaml | 284 mixed PWM/PFM mode, using PFM under light loads and 285 switching to PWM for heavier loads. Forcing PWM mode 286 trades efficiency under light loads for lower output
|