| /linux-6.15/drivers/net/wireless/realtek/rtw88/ |
| H A D | led.c | 22 { .throughput = 0 * 1024, .blink_time = 334 }, in rtw_led_init() 23 { .throughput = 1 * 1024, .blink_time = 260 }, in rtw_led_init() 24 { .throughput = 5 * 1024, .blink_time = 220 }, in rtw_led_init() 25 { .throughput = 10 * 1024, .blink_time = 190 }, in rtw_led_init() 26 { .throughput = 20 * 1024, .blink_time = 170 }, in rtw_led_init() 27 { .throughput = 50 * 1024, .blink_time = 150 }, in rtw_led_init() 28 { .throughput = 70 * 1024, .blink_time = 130 }, in rtw_led_init() 29 { .throughput = 100 * 1024, .blink_time = 110 }, in rtw_led_init() 30 { .throughput = 200 * 1024, .blink_time = 80 }, in rtw_led_init() 31 { .throughput = 300 * 1024, .blink_time = 50 }, in rtw_led_init()
|
| /linux-6.15/drivers/net/wireless/intel/iwlwifi/dvm/ |
| H A D | led.c | 37 { .throughput = 0, .blink_time = 334 }, 38 { .throughput = 1 * 1024 - 1, .blink_time = 260 }, 39 { .throughput = 5 * 1024 - 1, .blink_time = 220 }, 40 { .throughput = 10 * 1024 - 1, .blink_time = 190 }, 41 { .throughput = 20 * 1024 - 1, .blink_time = 170 }, 42 { .throughput = 50 * 1024 - 1, .blink_time = 150 }, 43 { .throughput = 70 * 1024 - 1, .blink_time = 130 }, 44 { .throughput = 100 * 1024 - 1, .blink_time = 110 }, 45 { .throughput = 200 * 1024 - 1, .blink_time = 80 }, 46 { .throughput = 300 * 1024 - 1, .blink_time = 50 },
|
| /linux-6.15/net/x25/ |
| H A D | x25_facilities.c | 103 facilities->throughput = p[1]; in x25_parse_facilities() 210 if (facilities->throughput && (facil_mask & X25_MASK_THROUGHPUT)) { in x25_create_facilities() 212 *p++ = facilities->throughput; in x25_create_facilities() 291 if (theirs.throughput) { in x25_negotiate_facilities() 292 int theirs_in = theirs.throughput & 0x0f; in x25_negotiate_facilities() 293 int theirs_out = theirs.throughput & 0xf0; in x25_negotiate_facilities() 294 int ours_in = ours->throughput & 0x0f; in x25_negotiate_facilities() 295 int ours_out = ours->throughput & 0xf0; in x25_negotiate_facilities() 298 new->throughput = (new->throughput & 0xf0) | theirs_in; in x25_negotiate_facilities() 303 new->throughput = (new->throughput & 0x0f) | theirs_out; in x25_negotiate_facilities()
|
| /linux-6.15/net/batman-adv/ |
| H A D | bat_v.c | 133 u32 throughput; in batadv_v_neigh_dump_neigh() local 136 throughput = ewma_throughput_read(&hardif_neigh->bat_v.throughput); in batadv_v_neigh_dump_neigh() 137 throughput = throughput * 100; in batadv_v_neigh_dump_neigh() 275 u32 throughput; in batadv_v_orig_dump_subentry() local 282 throughput = n_ifinfo->bat_v.throughput * 100; in batadv_v_orig_dump_subentry() 465 ret = ifinfo1->bat_v.throughput - ifinfo2->bat_v.throughput; in batadv_v_neigh_cmp() 491 threshold = ifinfo1->bat_v.throughput / 4; in batadv_v_neigh_is_sob() 492 threshold = ifinfo1->bat_v.throughput - threshold; in batadv_v_neigh_is_sob() 494 ret = ifinfo2->bat_v.throughput > threshold; in batadv_v_neigh_is_sob() 543 *bw = router_ifinfo->bat_v.throughput; in batadv_v_gw_throughput_get() [all …]
|
| H A D | bat_v_elp.c | 89 u32 throughput; in batadv_v_elp_get_throughput() local 101 throughput = atomic_read(&hard_iface->bat_v.throughput_override); in batadv_v_elp_get_throughput() 102 if (throughput != 0) { in batadv_v_elp_get_throughput() 103 *pthroughput = throughput; in batadv_v_elp_get_throughput() 174 throughput = link_settings.base.speed; in batadv_v_elp_get_throughput() 175 if (throughput && throughput != SPEED_UNKNOWN) { in batadv_v_elp_get_throughput() 176 *pthroughput = throughput * 10; in batadv_v_elp_get_throughput() 204 u32 throughput; in batadv_v_elp_throughput_metric_update() local 207 valid = batadv_v_elp_get_throughput(neigh, &throughput); in batadv_v_elp_throughput_metric_update() 211 ewma_throughput_add(&neigh->bat_v.throughput, throughput); in batadv_v_elp_throughput_metric_update()
|
| H A D | bat_v_ogm.c | 339 ntohl(ogm_packet->throughput), ogm_packet->ttl, in batadv_v_ogm_send_meshif() 478 u32 throughput) in batadv_v_forward_penalty() argument 485 throughput = throughput * (hop_penalty_max - if_hop_penalty) / in batadv_v_forward_penalty() 490 return throughput; in batadv_v_forward_penalty() 496 if (throughput > 10 && in batadv_v_forward_penalty() 499 return throughput / 2; in batadv_v_forward_penalty() 577 ogm_forward->throughput = htonl(neigh_ifinfo->bat_v.throughput); in batadv_v_ogm_forward() 660 ntohl(ogm2->throughput)); in batadv_v_ogm_metric_update() 661 neigh_ifinfo->bat_v.throughput = path_throughput; in batadv_v_ogm_metric_update() 867 ogm_throughput = ntohl(ogm_packet->throughput); in batadv_v_ogm_process() [all …]
|
| /linux-6.15/Documentation/block/ |
| H A D | bfq-iosched.rst | 14 throughput high). 23 latency and throughput, or on how to maximize throughput. 117 High throughput 135 applications that would otherwise cause a throughput loss. 179 throughput. 246 throughput proportional to its weight, even if the throughput 274 got access to the device, the higher the throughput is. 333 throughput and making sure that the desired throughput distribution is 339 number of seeks and see improved throughput. 353 throughput and acceptable latencies. [all …]
|
| H A D | deadline-iosched.rst | 41 throughput. When low latency is the primary concern, smaller is better (where 43 generally improves throughput, at the cost of latency variation.
|
| /linux-6.15/drivers/gpu/drm/amd/amdgpu/ |
| H A D | amdgpu_benchmark.c | 65 s64 throughput = (n * (size >> 10)); in amdgpu_benchmark_log_results() local 67 throughput = div64_s64(throughput, time_ms); in amdgpu_benchmark_log_results() 72 throughput * 8, throughput); in amdgpu_benchmark_log_results()
|
| /linux-6.15/drivers/gpu/drm/amd/display/dc/dsc/ |
| H A D | dc_dsc.c | 233 *throughput = 0; in dsc_throughput_from_dpcd() 236 *throughput = 170; in dsc_throughput_from_dpcd() 239 *throughput = 340; in dsc_throughput_from_dpcd() 242 *throughput = 400; in dsc_throughput_from_dpcd() 245 *throughput = 450; in dsc_throughput_from_dpcd() 248 *throughput = 500; in dsc_throughput_from_dpcd() 251 *throughput = 550; in dsc_throughput_from_dpcd() 254 *throughput = 600; in dsc_throughput_from_dpcd() 257 *throughput = 650; in dsc_throughput_from_dpcd() 260 *throughput = 700; in dsc_throughput_from_dpcd() [all …]
|
| /linux-6.15/drivers/gpu/drm/loongson/ |
| H A D | lsdc_benchmark.c | 76 unsigned int throughput; in lsdc_benchmark_copy() local 93 throughput = (n * (size >> 10)) / time; in lsdc_benchmark_copy() 100 time, throughput); in lsdc_benchmark_copy()
|
| /linux-6.15/Documentation/admin-guide/device-mapper/ |
| H A D | dm-service-time.rst | 11 The performance value is a relative throughput value among all paths 25 The relative throughput value of the path 42 The relative throughput value of the path 79 and sda has an average throughput 1GB/s and sdb has 4GB/s,
|
| /linux-6.15/tools/testing/selftests/amd-pstate/ |
| H A D | tbench.sh | 98 …grep Throughput $OUTFILE_TBENCH-perf-$1-$2.log | awk '{print $2}' > $OUTFILE_TBENCH-throughput-$1-… 99 tp_sum=$(awk 'BEGIN {sum=0};{sum += $1};END {print sum}' $OUTFILE_TBENCH-throughput-$1-$2.log) 150 …LE_TBENCH.result | grep "throughput(MB/s):" | awk '{print $NF}' > $OUTFILE_TBENCH-throughput-$1.log 151 tp_sum=$(awk 'BEGIN {sum=0};{sum += $1};END {print sum}' $OUTFILE_TBENCH-throughput-$1.log) 154 …avg_tp=$(awk 'BEGIN {sum=0};{sum += $1};END {print sum/'$LOOP_TIMES'}' $OUTFILE_TBENCH-throughput-…
|
| /linux-6.15/drivers/gpu/drm/radeon/ |
| H A D | radeon_benchmark.c | 80 unsigned int throughput = (n * (size >> 10)) / time; in radeon_benchmark_log_results() local 84 throughput * 8, throughput); in radeon_benchmark_log_results()
|
| /linux-6.15/drivers/net/wireless/ath/ath9k/ |
| H A D | htc_drv_init.c | 51 { .throughput = 0 * 1024, .blink_time = 334 }, 52 { .throughput = 1 * 1024, .blink_time = 260 }, 53 { .throughput = 5 * 1024, .blink_time = 220 }, 54 { .throughput = 10 * 1024, .blink_time = 190 }, 55 { .throughput = 20 * 1024, .blink_time = 170 }, 56 { .throughput = 50 * 1024, .blink_time = 150 }, 57 { .throughput = 70 * 1024, .blink_time = 130 }, 58 { .throughput = 100 * 1024, .blink_time = 110 }, 59 { .throughput = 200 * 1024, .blink_time = 80 }, 60 { .throughput = 300 * 1024, .blink_time = 50 },
|
| H A D | init.c | 86 { .throughput = 0 * 1024, .blink_time = 334 }, 87 { .throughput = 1 * 1024, .blink_time = 260 }, 88 { .throughput = 5 * 1024, .blink_time = 220 }, 89 { .throughput = 10 * 1024, .blink_time = 190 }, 90 { .throughput = 20 * 1024, .blink_time = 170 }, 91 { .throughput = 50 * 1024, .blink_time = 150 }, 92 { .throughput = 70 * 1024, .blink_time = 130 }, 93 { .throughput = 100 * 1024, .blink_time = 110 }, 94 { .throughput = 200 * 1024, .blink_time = 80 }, 95 { .throughput = 300 * 1024, .blink_time = 50 },
|
| /linux-6.15/Documentation/misc-devices/ |
| H A D | dw-xdata-pcie.rst | 40 Get link throughput in MB/s:: 56 Get link throughput in MB/s::
|
| /linux-6.15/Documentation/ABI/testing/ |
| H A D | sysfs-driver-xdata | 17 The user can read the current PCIe link throughput generated 42 The user can read the current PCIe link throughput generated
|
| /linux-6.15/drivers/net/wireless/ralink/rt2x00/ |
| H A D | rt2x00dev.c | 1099 { .throughput = 0 * 1024, .blink_time = 334 }, 1100 { .throughput = 1 * 1024, .blink_time = 260 }, 1101 { .throughput = 2 * 1024, .blink_time = 220 }, 1102 { .throughput = 5 * 1024, .blink_time = 190 }, 1103 { .throughput = 10 * 1024, .blink_time = 170 }, 1104 { .throughput = 25 * 1024, .blink_time = 150 }, 1105 { .throughput = 54 * 1024, .blink_time = 130 }, 1106 { .throughput = 120 * 1024, .blink_time = 110 }, 1107 { .throughput = 265 * 1024, .blink_time = 80 }, 1108 { .throughput = 586 * 1024, .blink_time = 50 },
|
| /linux-6.15/tools/testing/selftests/net/ |
| H A D | tcp_mmap.c | 181 double throughput; in child_thread() local 294 throughput = 0; in child_thread() 296 throughput = total * 8.0 / (double)delta_usec / 1000.0; in child_thread() 308 throughput, in child_thread()
|
| /linux-6.15/drivers/atm/ |
| H A D | Kconfig | 68 In order to obtain good throughput, the ENI NIC can transfer 81 resulting throughput is lower than when using only the largest 84 Also, sometimes larger bursts lead to lower throughput, e.g. on an 108 may or may not improve throughput. 116 are also set may or may not improve throughput. 139 improve throughput. 147 8W are also set may or may not improve throughput.
|
| /linux-6.15/drivers/perf/amlogic/ |
| H A D | Kconfig | 8 memory throughput and other related events. It
|
| /linux-6.15/drivers/staging/fbtft/ |
| H A D | fbtft-core.c | 231 long fps, throughput; in fbtft_update_display() local 287 throughput = ktime_us_delta(ts_end, ts_start); in fbtft_update_display() 288 throughput = throughput ? (len * 1000) / throughput : 0; in fbtft_update_display() 289 throughput = throughput * 1000 / 1024; in fbtft_update_display() 293 throughput, fps); in fbtft_update_display()
|
| /linux-6.15/include/uapi/linux/ |
| H A D | x25.h | 106 unsigned int throughput; member
|
| /linux-6.15/tools/perf/Documentation/ |
| H A D | cpu-and-latency-overheads.txt | 11 Optimizing CPU overhead is useful to improve 'throughput', while optimizing 14 may be useful to improve max throughput of a CI build server that runs on 100%
|