| /linux/drivers/net/ethernet/intel/fm10k/ |
| H A D | fm10k_tlv.c | 461 * @results: Pointer array to store pointers to attributes 465 * up into an array of pointers stored in results. The function will 471 static s32 fm10k_tlv_attr_parse(u32 *attr, u32 **results, in fm10k_tlv_attr_parse() argument 479 if (!attr || !results) in fm10k_tlv_attr_parse() 482 /* initialize results to NULL */ in fm10k_tlv_attr_parse() 484 results[i] = NULL; in fm10k_tlv_attr_parse() 495 results[0] = attr; in fm10k_tlv_attr_parse() 515 results[attr_id] = attr; in fm10k_tlv_attr_parse() 548 u32 *results[FM10K_TLV_RESULTS_MAX]; in fm10k_tlv_msg_parse() local 572 /* parse the attributes into the results list */ in fm10k_tlv_msg_parse() [all …]
|
| H A D | fm10k_iov.c | 8 static s32 fm10k_iov_msg_error(struct fm10k_hw *hw, u32 **results, in fm10k_iov_msg_error() argument 16 **results & FM10K_TLV_ID_MASK, vf_info->vf_idx); in fm10k_iov_msg_error() 18 return fm10k_tlv_msg_error(hw, results, mbx); in fm10k_iov_msg_error() 24 * @results: Pointer array to message, results[0] is pointer to message 33 static s32 fm10k_iov_msg_queue_mac_vlan(struct fm10k_hw *hw, u32 **results, in fm10k_iov_msg_queue_mac_vlan() argument 49 if (!err && !!results[FM10K_MAC_VLAN_MSG_VLAN]) { in fm10k_iov_msg_queue_mac_vlan() 50 result = results[FM10K_MAC_VLAN_MSG_VLAN]; in fm10k_iov_msg_queue_mac_vlan() 88 if (!err && !!results[FM10K_MAC_VLAN_MSG_MAC]) { in fm10k_iov_msg_queue_mac_vlan() 89 result = results[FM10K_MAC_VLAN_MSG_MAC]; in fm10k_iov_msg_queue_mac_vlan() 115 if (!err && !!results[FM10K_MAC_VLAN_MSG_MULTICAST]) { in fm10k_iov_msg_queue_mac_vlan() [all …]
|
| /linux/tools/memory-model/scripts/ |
| H A D | README | 11 the results against the expected results recorded in the 18 documenting expected results, comparing the actual results to 35 expected results. This takes optional parseargs.sh arguments, 49 of processes given a specified timeout, recording the results 63 and record the results in .litmus.out files. 82 # Populate expected results without that change, and 93 # Compares results to those produced by initlitmushist.sh, 97 # Checks results against Result tags, runs in minutes:
|
| H A D | checklitmushist.sh | 31 # Create the results directory and populate it with subdirectories. 34 mkdir $T/results 35 find litmus -type d -print | ( cd $T/results; sed -e 's/^/mkdir -p /' | sh ) 46 LKMM_DESTDIR=$T/results; export LKMM_DESTDIR 55 ( cd $T/results; find litmus -type f -name '*.litmus.out' -print |
|
| /linux/drivers/net/ethernet/meta/fbnic/ |
| H A D | fbnic_fw.c | 599 /* Copy results into MAC addr array */ in fbnic_fw_parse_bmc_addrs() 610 static int fbnic_fw_parse_cap_resp(void *opaque, struct fbnic_tlv_msg **results) in fbnic_fw_parse_cap_resp() argument 617 version = fta_get_uint(results, FBNIC_FW_CAP_RESP_VERSION); in fbnic_fw_parse_cap_resp() 638 if (fta_get_str(results, FBNIC_FW_CAP_RESP_VERSION_COMMIT_STR, in fbnic_fw_parse_cap_resp() 643 version = fta_get_uint(results, FBNIC_FW_CAP_RESP_STORED_VERSION); in fbnic_fw_parse_cap_resp() 645 fta_get_str(results, FBNIC_FW_CAP_RESP_STORED_COMMIT_STR, in fbnic_fw_parse_cap_resp() 649 version = fta_get_uint(results, FBNIC_FW_CAP_RESP_CMRT_VERSION); in fbnic_fw_parse_cap_resp() 651 fta_get_str(results, FBNIC_FW_CAP_RESP_CMRT_COMMIT_STR, in fbnic_fw_parse_cap_resp() 655 version = fta_get_uint(results, FBNIC_FW_CAP_RESP_STORED_CMRT_VERSION); in fbnic_fw_parse_cap_resp() 657 fta_get_str(results, FBNIC_FW_CAP_RESP_STORED_CMRT_COMMIT_STR, in fbnic_fw_parse_cap_resp() [all …]
|
| /linux/tools/perf/tests/shell/lib/ |
| H A D | perf_metric_validation.py | 51 self.allresults = dict() # metric results of all workload 55 self.results = dict() # metric results of current workload 57 # metrics with no results or negative results, neg result counts failed tests 100 return self.results.get(idx) 145 Get value of the metric from self.results. 150 @returns: list with value found in self.results; list is empty when value is not found. 152 results = [] 153 data = self.results[rid [all...] |
| /linux/scripts/ |
| H A D | generate_initcall_order.pl | 19 ## results from child processes 20 my $results = {}; # object index -> [ { level, secname }, ... ] 37 ## writes results to the parent process 57 ## reads a result line from a child process and adds it to the $results array 83 if (!exists($results->{$index})) { 84 $results->{$index} = []; 87 push (@{$results->{$index}}, { 96 ## writes results back to the parent process 153 ## waits for any child process to complete, reads the results, and adds them to 154 ## the $results array for later processing [all …]
|
| H A D | leaking_addresses.pl | 50 my $output_raw = ""; # Write raw results to file. 51 my $input_raw = ""; # Read raw results from file instead of scanning. 95 -o, --output-raw=<file> Save results for future processing. 96 -i, --input-raw=<file> Read results from file instead of scanning. 97 --raw Show raw results (default). 98 --suppress-dmesg Do not show dmesg results. 574 # Default is to show raw results. 582 printf "\nTotal number of results from scan (incl dmesg): %d\n", $total; 645 print "<no results>\n"; 661 print "Displaying [<number of results> <$desc>], <example result>\n"; [all …]
|
| /linux/tools/testing/selftests/resctrl/ |
| H A D | cache.c | 73 ksft_perror("Failed to open results file"); 89 * print_results_cache: the cache results are stored in a file in get_llc_occu_resctrl() 90 * @filename: file that stores the results in get_llc_occu_resctrl() 106 ksft_perror("Cannot open results file"); in print_results_cache() 119 * @filename: Filename for writing the results in print_results_cache() 122 * Measures perf events (e.g., cache misses) and writes the results into in print_results_cache() 123 * @filename. @bm_pid is written to the results file along with the measured 149 * @filename: Filename for writing the results in perf_event_measure() 152 * Measures LLC occupancy from resctrl and writes the results into @filename. in perf_event_measure() 153 * @bm_pid is written to the results fil in perf_event_measure() [all...] |
| /linux/Documentation/dev-tools/kunit/ |
| H A D | run_manual.rst | 9 include KUnit in any kernel, read out results, and parse manually. 46 kernel boot. The results will be written to the kernel log (``dmesg``) 56 The results will appear in TAP format in ``dmesg``. 68 Retrieve Test Results 71 You can use debugfs to retrieve KUnit test results. The test results are 76 /sys/kernel/debug/kunit/<test_suite>/results 78 The test results are printed in a KTAP document. Note this document is separate 92 As a result, the test suite runs and the results are printed to the kernel
|
| H A D | architecture.rst | 20 - Reports test results 140 KUnit prints the test results in KTAP format. KTAP is based on TAP14, see 142 KTAP works with KUnit and Kselftest. The KUnit executor prints KTAP results to 160 is used to configure, build, execute, parse test results and run all of the 163 enabled and manually parse the results (see 187 - ``exec`` command executes kernel results either directly (using 189 as QEMU. It reads results from the log using standard 192 you can run the kernel and display the test results with the ``exec`` 195 the test results, and prints a summary. For failed tests, any
|
| H A D | running_tips.rst | 170 results to dmesg in TAP format. So you just need to add your tests to your 224 Pretty-printing results 228 results in the same familiar format that ``kunit.py run`` does. 235 Retrieving per suite results 239 ``CONFIG_KUNIT_DEBUGFS`` to expose per-suite TAP-formatted results: 247 The results for each suite will be exposed under 248 ``/sys/kernel/debug/kunit/<suite>/results``. 254 $ cat /sys/kernel/debug/kunit/example/results 259 $ cat /sys/kernel/debug/kunit/example/results 260 /sys/kernel/debug/kunit/example/results: No such file or directory
|
| /linux/tools/net/sunrpc/xdrgen/generators/ |
| H A D | program.py | 50 results = dict.fromkeys([]) 55 results[procedure.result.type_name] = None 56 if len(results) > 0: 59 for result in results: 83 results = dict.fromkeys([]) 86 results[procedure.result.type_name] = None 89 for result in results: 111 results = dict.fromkeys([]) 116 results[procedure.result.type_name] = None 119 for result in results:
|
| /linux/tools/perf/pmu-events/arch/arm64/arm/cortex-a65-e1/ |
| H A D | cache.json | 189 … event occurs when a requestor outside the PE makes a coherency request that results in writeback", 192 …s event occurs when a requestor outside the PE makes a coherency request that results in writeback" 195 …nt occurs when a requestor outside the PE makes a coherency request that results in level 2 data c… 198 …nt occurs when a requestor outside the PE makes a coherency request that results in level 2 data c… 201 …nt occurs when a requestor outside the PE makes a coherency request that results in level 2 data c… 204 …nt occurs when a requestor outside the PE makes a coherency request that results in level 2 data c… 207 …nt occurs when a requestor outside the PE makes a coherency request that results in level 3 data c… 210 …nt occurs when a requestor outside the PE makes a coherency request that results in level 3 data c… 213 …nt occurs when a requestor outside the PE makes a coherency request that results in level 3 data c… 216 …nt occurs when a requestor outside the PE makes a coherency request that results in level 3 data c… [all …]
|
| /linux/tools/perf/bench/ |
| H A D | pmu-scan.c | 41 static struct pmu_scan_result *results; variable 50 r = realloc(results, (nr_pmus + 1) * sizeof(*r)); in save_result() 54 results = r; in save_result() 55 r = results + nr_pmus; in save_result() 84 r = &results[i]; in check_result() 122 free(results[i].name); in delete_result() 123 free(results); in delete_result() 125 results = NULL; in delete_result()
|
| /linux/tools/testing/selftests/drivers/net/hw/ |
| H A D | devlink_rate_tc_bw.py | 279 Runs parallel bandwidth measurements for each VLAN/TC pair and collects results. 281 def _run_measure_bandwidth_thread(local_ip, remote_ip, results, barrier, tc_ix): 282 results[tc_ix] = measure_bandwidth(cfg, local_ip, remote_ip, barrier) 290 results = {} 297 args=(local_ip, remote_ip, results, start_barrier, tc_ix) argument 305 for tc_ix, tc_bw in results.items(): 309 return results 312 def calculate_bandwidth_percentages(results): 316 if 3 not in results or 4 not in results 327 calculate_bandwidth_percentages(results) global() argument [all...] |
| /linux/Documentation/misc-devices/ |
| H A D | bh1770glc.rst | 23 but ALS side results are used to estimate reliability of the proximity sensor. 30 8 bit. Driver supports only one channel. Driver uses ALS results to estimate 31 reliability of the proximity results. Thus ALS is always running while 79 All results above the value 86 All results below the value 93 Output results are multiplied with calibscale / calibscale_default
|
| /linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-v1/ |
| H A D | tlb.json | 4 …nly counts once. This event will not count if the translation table walk results in a fault (such … 8 …er the miss hits in L2 or results in a translation table walk. This event will not count if the tr… 36 …er the miss hits in L2 or results in a translation table walk. This event will not count if the tr… 40 … whether the miss hits in L2 or results in a translation table walk. This event will not count if …
|
| /linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n1/ |
| H A D | tlb.json | 4 …nly counts once. This event will not count if the translation table walk results in a fault (such … 8 …er the miss hits in L2 or results in a translation table walk. This event will not count if the tr… 36 …er the miss hits in L2 or results in a translation table walk. This event will not count if the tr… 40 … whether the miss hits in L2 or results in a translation table walk. This event will not count if …
|
| /linux/tools/lib/python/kdoc/ |
| H A D | kdoc_files.py | 187 # Prevent parsing the same file twice if results are cached 204 self.results[fname] = entries 211 # Prevent parsing the same file twice if results are cached 297 self.results = {} 333 Interacts over the kernel-doc results and output messages, 338 filenames = sorted(self.results.keys()) 356 if fname not in self.results: 360 symbols = self.results[fname]
|
| /linux/drivers/acpi/ |
| H A D | acpi_adxl.c | 105 union acpi_object argv4[2], *results, *r; in adxl_decode() local 117 results = adxl_dsm(ADXL_IDX_FORWARD_TRANSLATE, argv4); in adxl_decode() 118 if (!results) in adxl_decode() 121 r = results->package.elements + 1; in adxl_decode() 124 ACPI_FREE(results); in adxl_decode() 132 ACPI_FREE(results); in adxl_decode()
|
| /linux/lib/ |
| H A D | radix-tree.c | 527 * also results in a stale slot). So tag the slot as indirect in radix_tree_shrink() 1244 * @results: where the results of the lookup are placed 1246 * @max_items: place up to this many items at *results 1249 * them at *@results and returns the number of items which were placed at 1250 * *@results. 1255 * rcu_read_lock. In this case, rather than the returned results being 1258 * radix_tree_lookups have been issued in individual locks, and results 1259 * stored in 'results'. 1262 radix_tree_gang_lookup(const struct radix_tree_root *root, void **results, in radix_tree_gang_lookup() argument 1273 results[ret] = rcu_dereference_raw(*slot); in radix_tree_gang_lookup() [all …]
|
| /linux/tools/testing/kunit/ |
| H A D | kunit_parser.py | 3 # Parses KTAP test results from a kernel dmesg log and incrementally prints 4 # results with reader-friendly format. Stores and returns test results in a 24 A class to represent a test parsed from KTAP results. All KTAP 25 results within a test log are stored in a main Test object as 286 printer - Printer object to output results 406 printer - Printer object to output results 506 printer - Printer object to output results 536 printer - Printer object to output results 578 printer - Printer object to output results [all...] |
| /linux/tools/testing/selftests/net/bench/ |
| H A D | test_bench_page_pool.sh | 18 echo "Fast path results:" 22 echo "ptr_ring results:" 26 echo "slow path results:"
|
| /linux/fs/overlayfs/ |
| H A D | Kconfig | 27 feature will have unexpected results. 61 that doesn't support this feature will have unexpected results. 86 that doesn't support this feature will have unexpected results. 125 that doesn't support this feature will have unexpected results.
|