| /tools/testing/kunit/test_data/ |
| A D | test_is_test_passed-all_passed_nested.log | 7 # Subtest: example 16 kunit example: all tests passed 17 ok 2 - example 24 # Subtest: example 33 kunit example: all tests passed 34 ok 2 - example
|
| A D | test_strip_hyphen.log | 9 # Subtest: example 15 kunit example: all tests passed 16 ok 2 example
|
| A D | test_is_test_passed-failure.log | 23 # Subtest: example 27 # example_simple_test: EXPECTATION FAILED at lib/kunit/example-test.c:30 36 kunit example: one or more tests failed 37 not ok 2 - example
|
| A D | test_is_test_passed-all_passed.log | 23 # Subtest: example 32 kunit example: all tests passed 33 ok 2 - example
|
| A D | test_is_test_passed-missing_plan.log | 21 # Subtest: example 30 kunit example: all tests passed 31 ok 2 - example
|
| A D | test_skip_tests.log | 9 # Subtest: example 15 ok 2 - example
|
| A D | test_skip_all_tests.log | 9 # Subtest: example 15 ok 2 - example # SKIP
|
| A D | test_parse_attributes.log | 5 # module: example
|
| /tools/testing/ktest/examples/ |
| A D | README | 1 This directory contains example configs to use ktest for various tasks. 10 crosstests.conf - this config shows an example of testing a git repo against 16 test.conf - A generic example of a config. This is based on an actual config 19 kvm.conf - A example of a config that is used to test a virtual guest running 22 snowball.conf - An example config that was used to demo ktest.pl against 26 included into other configs. This is a real use example that shows how
|
| /tools/wmi/ |
| A D | Makefile | 7 TARGET = dell-smbios-example 17 install: dell-smbios-example
|
| /tools/testing/selftests/sched_ext/ |
| A D | test_example.c | 42 struct scx_test example = { variable 49 REGISTER_SCX_TEST(&example)
|
| /tools/bpf/bpftool/Documentation/ |
| A D | bpftool-gen.rst | 98 provided (assuming **example** as the object name): 281 **$ bpftool gen skeleton example.bpf.o name example | tee example.skel.h** 294 struct example { 334 static void example__destroy(struct example *obj); 335 static inline struct example *example__open_opts( 337 static inline struct example *example__open(); 338 static inline int example__load(struct example *obj); 345 **$ cat example.c** 349 #include "example.skel.h" 353 struct example *skel; [all …]
|
| /tools/power/pm-graph/config/ |
| A D | custom-timeline-functions.cfg | 92 # example: _cpu_up: 99 # example: CPU_ON[{cpu}] 105 # example: [color=#CC00CC] 110 # example: cpu=%di:s32 157 # example: ata_eh_recover: 164 # example: ata{port}_port_reset 170 # example: [color=#CC00CC] 175 # example: port=+36(%di):s32
|
| /tools/sched_ext/ |
| A D | README.md | 6 This directory contains a number of example sched_ext schedulers. These 17 This README will describe these example schedulers, including describing the 25 There are a few toolchain dependencies for compiling the example schedulers. 78 You may notice that most of the example schedulers include a "vmlinux.h" file. 93 example, using vmlinux.h allows a scheduler to access fields defined directly 108 bpf_printk("Task %s enabled in example scheduler", p->comm); 115 .name = "example", 144 example above, we print out a task name with `p->comm`. CO-RE would perform 168 A simple scheduler that provides an example of a minimal sched_ext scheduler. 190 benefits from minimizing scheduling overhead and timer ticks. An example of [all …]
|
| /tools/perf/Documentation/ |
| A D | cpu-and-latency-overheads.txt | 13 which one is useful in a concrete situation at hand. For example, the former 17 These overheads may be significantly different in some cases. For example, 52 numbers of cores ('Parallelism' column). For example, in the following case 84 filter. For example, to see the profile only for low parallelism phases
|
| A D | asciidoc.conf | 34 <example><title>{title}</title> 51 <example><title>{title}</title>
|
| A D | guestmount.txt | 5 For example, start 2 guest OS, one's pid is 8888 and the other's is 9999:
|
| A D | intel-hybrid.txt | 14 The 'cpus' files are created under the directories. For example, 45 For example, count the 'cycles' event on core cpus. 84 perf stat -e cycles -a (use system-wide in this example), two events 127 Thread mode example: 132 One example, 'triad_loop' runs on cpu16 (atom core), while we can see the
|
| /tools/memory-model/Documentation/ |
| A D | control-dependencies.txt | 22 from "a". This means that an explicit read barrier is required, for example 33 following example: 50 the original example by eliminating the "if" statement as follows: 91 have been applied. Therefore, if you need ordering in this example, 92 you must use explicit memory ordering, for example, smp_store_release(): 104 guaranteed only when the stores differ, for example: 121 preserve ordering. For example: 164 evaluation. Consider this example: 171 always true, the compiler can transform this example as follows, again 177 This is yet another example showing the importance of preventing the [all …]
|
| A D | access-marking.txt | 18 1. Plain C-language accesses (unmarked), for example, "a = b;" 20 2. Data-race marking, for example, "data_race(a = b);" 22 3. READ_ONCE(), for example, "a = READ_ONCE(b);" 25 4. WRITE_ONCE(), for example, "WRITE_ONCE(a, b);" 28 5. __data_racy, for example "int __data_racy a;" 35 example: 155 for example, from sysfs. This means that some code in sysfs writes 225 For example: 243 For example, ASSERT_EXCLUSIVE_ACCESS(foo) tells KCSAN that any 269 For example, suppose a shared variable "foo" is read only while a [all …]
|
| A D | glossary.txt | 27 Acquire: With respect to a lock, acquiring that lock, for example, 31 An example special acquire operation is smp_load_acquire(), 57 For example: 90 extends from that load to that later store. For example: 158 Relaxed: A marked access that does not imply ordering, for example, a 165 Release: With respect to a lock, releasing that lock, for example, 169 An example special release store is smp_store_release(), but 176 syntax, for example, "a = b[2]";
|
| A D | cheatsheet.txt | 27 R: Read, for example, READ_ONCE(), or read portion of RMW 28 W: Write, for example, WRITE_ONCE(), or write portion of RMW
|
| /tools/lib/perf/Documentation/ |
| A D | asciidoc.conf | 34 <example><title>{title}</title> 51 <example><title>{title}</title>
|
| /tools/arch/x86/dell-uart-backlight-emulator/ |
| A D | README | 27 DSDT.patch for an example of the necessary DSDT changes. 34 For example when using an USB to serial converter for the second port:
|
| /tools/memory-model/litmus-tests/ |
| A D | Z6.0+pooncelock+pooncelock+pombonce.litmus | 6 * This example demonstrates that a pair of accesses made by different
|