/Linux-v4.19/kernel/sched/ |
D | loadavg.c | 72 void get_avenrun(unsigned long *loads, unsigned long offset, int shift) in get_avenrun() argument 74 loads[0] = (avenrun[0] + offset) << shift; in get_avenrun() 75 loads[1] = (avenrun[1] + offset) << shift; in get_avenrun() 76 loads[2] = (avenrun[2] + offset) << shift; in get_avenrun()
|
/Linux-v4.19/tools/perf/Documentation/ |
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. 85 Specify desired latency for loads event.
|
/Linux-v4.19/arch/powerpc/perf/ |
D | power8-pmu.c | 137 CACHE_EVENT_ATTR(L1-dcache-loads, PM_LD_REF_L1); 142 CACHE_EVENT_ATTR(L1-icache-loads, PM_INST_FROM_L1); 146 CACHE_EVENT_ATTR(LLC-loads, PM_DATA_FROM_L3); 152 CACHE_EVENT_ATTR(branch-loads, PM_BRU_FIN);
|
D | power9-pmu.c | 173 CACHE_EVENT_ATTR(L1-dcache-loads, PM_LD_REF_L1); 177 CACHE_EVENT_ATTR(L1-icache-loads, PM_INST_FROM_L1); 180 CACHE_EVENT_ATTR(LLC-loads, PM_DATA_FROM_L3); 185 CACHE_EVENT_ATTR(branch-loads, PM_BR_CMPL);
|
/Linux-v4.19/arch/alpha/lib/ |
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-v4.19/include/linux/sched/ |
D | loadavg.h | 16 extern void get_avenrun(unsigned long *loads, unsigned long offset, int shift);
|
/Linux-v4.19/include/uapi/linux/ |
D | sysinfo.h | 10 __kernel_ulong_t loads[3]; /* 1, 5, and 15 minute load averages */ member
|
/Linux-v4.19/tools/memory-model/Documentation/ |
D | explanation.txt | 76 for the loads, the model will predict whether it is possible for the 77 code to run in such a way that the loads will indeed obtain the 139 shared memory locations and another CPU loads from those locations in 151 A memory model will predict what values P1 might obtain for its loads 194 Since r1 = 1, P0 must store 1 to flag before P1 loads 1 from 195 it, as loads can obtain values only from earlier stores. 197 P1 loads from flag before loading from buf, since CPUs execute 220 each CPU stores to its own shared location and then loads from the 269 X: P1 loads 1 from flag executes before 270 Y: P1 loads 0 from buf executes before [all …]
|
D | recipes.txt | 46 tearing, load/store fusing, and invented loads and stores. 204 and another CPU execute a pair of loads from this same pair of variables, 311 smp_rmb() macro orders prior loads against later loads. Therefore, if 354 second, while another CPU loads from the second variable and then stores 475 that one CPU first stores to one variable and then loads from a second, 476 while another CPU stores to the second variable and then loads from the
|
/Linux-v4.19/arch/mips/include/asm/ |
D | mips-r2-to-r6-emul.h | 22 u64 loads; member
|
D | fpu_emulator.h | 37 unsigned long loads; member
|
/Linux-v4.19/Documentation/ |
D | memory-barriers.txt | 180 perceived by the loads made by another CPU in the same order as the stores were 249 (*) Overlapping loads and stores within a particular CPU will appear to be 277 (*) It _must_not_ be assumed that independent loads and stores will be issued 371 deferral and combination of memory operations; speculative loads; speculative 390 to have any effect on loads. 403 where two loads are performed such that the second depends on the result 409 A data dependency barrier is a partial ordering on interdependent loads 410 only; it is not required to have any effect on stores, independent loads 411 or overlapping loads. 419 touched by the load will be perceptible to any loads issued after the data [all …]
|
/Linux-v4.19/Documentation/livepatch/ |
D | module-elf-format.txt | 110 relocation section(s) to the driver once it loads. 210 a patch module loads. For example, this is the case when livepatch patches 212 symbols are resolved simply when the target module loads. In any case, for 300 additional arch-specific tasks when a target module loads, such as applying 302 .altinstructions and .parainstructions sections when a target module loads. 315 module->klp_info, which is a klp_modinfo struct. When a livepatch module loads,
|
/Linux-v4.19/arch/mips/kernel/ |
D | mips-r2-to-r6-emul.c | 1281 MIPS_R2_STATS(loads); in mipsr2_decoder() 1355 MIPS_R2_STATS(loads); in mipsr2_decoder() 1615 MIPS_R2_STATS(loads); in mipsr2_decoder() 1734 MIPS_R2_STATS(loads); in mipsr2_decoder() 2274 (unsigned long)__this_cpu_read(mipsr2emustats.loads), in mipsr2_stats_show() 2275 (unsigned long)__this_cpu_read(mipsr2bdemustats.loads)); in mipsr2_stats_show() 2331 __this_cpu_write((mipsr2emustats).loads, 0); in mipsr2_stats_clear_show() 2332 __this_cpu_write((mipsr2bdemustats).loads, 0); in mipsr2_stats_clear_show()
|
/Linux-v4.19/kernel/debug/kdb/ |
D | kdb_main.c | 2513 val->loads[0] = avenrun[0]; in kdb_sysinfo() 2514 val->loads[1] = avenrun[1]; in kdb_sysinfo() 2515 val->loads[2] = avenrun[2]; in kdb_sysinfo() 2564 LOAD_INT(val.loads[0]), LOAD_FRAC(val.loads[0]), in kdb_summary() 2565 LOAD_INT(val.loads[1]), LOAD_FRAC(val.loads[1]), in kdb_summary() 2566 LOAD_INT(val.loads[2]), LOAD_FRAC(val.loads[2])); in kdb_summary()
|
/Linux-v4.19/arch/powerpc/lib/ |
D | memcpy_64.S | 118 ld r9,0(r4) # 3+2n loads, 2+2n stores 130 0: ld r0,0(r4) # 4+2n loads, 3+2n stores
|
/Linux-v4.19/tools/testing/selftests/powerpc/copyloops/ |
D | memcpy_64.S | 118 ld r9,0(r4) # 3+2n loads, 2+2n stores 130 0: ld r0,0(r4) # 4+2n loads, 3+2n stores
|
/Linux-v4.19/Documentation/ABI/stable/ |
D | vdso | 1 On some architectures, when the kernel loads any userspace program it
|
/Linux-v4.19/Documentation/core-api/ |
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
|
/Linux-v4.19/tools/perf/util/ |
D | parse-events.l | 334 mem-loads { return str(yyscanner, PE_KERNEL_PMU_EVENT); } 346 load|loads|read |
|
/Linux-v4.19/arch/mips/math-emu/ |
D | me-debugfs.c | 55 __this_cpu_write((fpuemustats).loads, 0); in fpuemustats_clear_show() 231 FPU_STAT_CREATE(loads); in debugfs_fpuemu()
|
/Linux-v4.19/Documentation/devicetree/bindings/mfd/ |
D | axp20x.txt | 67 using PFM under light loads and switching to PWM 68 for heavier loads. Forcing PWM mode trades efficiency 69 under light loads for lower output noise. This
|
/Linux-v4.19/kernel/ |
D | sys.c | 2514 get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT); in do_sysinfo() 2580 u32 loads[3]; member 2624 __put_user(s.loads[0], &info->loads[0]) || in COMPAT_SYSCALL_DEFINE1() 2625 __put_user(s.loads[1], &info->loads[1]) || in COMPAT_SYSCALL_DEFINE1() 2626 __put_user(s.loads[2], &info->loads[2]) || in COMPAT_SYSCALL_DEFINE1()
|
/Linux-v4.19/Documentation/fb/ |
D | pvr2fb.txt | 46 XFree under high loads if write combining is enabled (sound
|
/Linux-v4.19/drivers/usb/misc/ |
D | Kconfig | 9 This driver loads firmware to Emagic EMI 6|2m low latency USB 23 This driver loads firmware to Emagic EMI 2|6 low latency USB 210 This driver loads firmware for USB Apple iSight cameras, allowing
|