/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/dvm/ |
D | led.c | 56 { .throughput = 0, .blink_time = 334 }, 57 { .throughput = 1 * 1024 - 1, .blink_time = 260 }, 58 { .throughput = 5 * 1024 - 1, .blink_time = 220 }, 59 { .throughput = 10 * 1024 - 1, .blink_time = 190 }, 60 { .throughput = 20 * 1024 - 1, .blink_time = 170 }, 61 { .throughput = 50 * 1024 - 1, .blink_time = 150 }, 62 { .throughput = 70 * 1024 - 1, .blink_time = 130 }, 63 { .throughput = 100 * 1024 - 1, .blink_time = 110 }, 64 { .throughput = 200 * 1024 - 1, .blink_time = 80 }, 65 { .throughput = 300 * 1024 - 1, .blink_time = 50 },
|
/Linux-v4.19/net/batman-adv/ |
D | bat_v.c | 127 ewma_throughput_init(&hardif_neigh->bat_v.throughput); in batadv_v_hardif_neigh_init() 156 n_ifinfo->bat_v.throughput / 10, in batadv_v_orig_print_neigh() 157 n_ifinfo->bat_v.throughput % 10); in batadv_v_orig_print_neigh() 173 u32 throughput; in batadv_v_hardif_neigh_print() local 177 throughput = ewma_throughput_read(&hardif_neigh->bat_v.throughput); in batadv_v_hardif_neigh_print() 180 hardif_neigh->addr, last_secs, last_msecs, throughput / 10, in batadv_v_hardif_neigh_print() 181 throughput % 10, hardif_neigh->if_incoming->net_dev->name); in batadv_v_hardif_neigh_print() 233 u32 throughput; in batadv_v_neigh_dump_neigh() local 236 throughput = ewma_throughput_read(&hardif_neigh->bat_v.throughput); in batadv_v_neigh_dump_neigh() 237 throughput = throughput * 100; in batadv_v_neigh_dump_neigh() [all …]
|
D | bat_v_ogm.c | 214 ntohl(ogm_packet->throughput), ogm_packet->ttl, in batadv_v_ogm_send() 295 u32 throughput) in batadv_v_forward_penalty() argument 302 return throughput; in batadv_v_forward_penalty() 308 if (throughput > 10 && in batadv_v_forward_penalty() 311 return throughput / 2; in batadv_v_forward_penalty() 314 return throughput * (hop_penalty_max - hop_penalty) / hop_penalty_max; in batadv_v_forward_penalty() 389 ogm_forward->throughput = htonl(neigh_ifinfo->bat_v.throughput); in batadv_v_ogm_forward() 394 if_outgoing->net_dev->name, ntohl(ogm_forward->throughput), in batadv_v_ogm_forward() 475 ntohl(ogm2->throughput)); in batadv_v_ogm_metric_update() 476 neigh_ifinfo->bat_v.throughput = path_throughput; in batadv_v_ogm_metric_update() [all …]
|
D | bat_v_elp.c | 83 u32 throughput; in batadv_v_elp_get_throughput() local 89 throughput = atomic_read(&hard_iface->bat_v.throughput_override); in batadv_v_elp_get_throughput() 90 if (throughput != 0) in batadv_v_elp_get_throughput() 91 return throughput; in batadv_v_elp_get_throughput() 150 throughput = link_settings.base.speed; in batadv_v_elp_get_throughput() 151 if (throughput && throughput != SPEED_UNKNOWN) in batadv_v_elp_get_throughput() 152 return throughput * 10; in batadv_v_elp_get_throughput() 184 ewma_throughput_add(&neigh->bat_v.throughput, in batadv_v_elp_throughput_metric_update()
|
D | gateway_common.c | 47 const char *description, u32 *throughput) in batadv_parse_throughput() argument 98 *throughput = lthroughput; in batadv_parse_throughput()
|
D | gateway_common.h | 55 const char *description, u32 *throughput);
|
/Linux-v4.19/net/x25/ |
D | x25_facilities.c | 108 facilities->throughput = p[1]; in x25_parse_facilities() 215 if (facilities->throughput && (facil_mask & X25_MASK_THROUGHPUT)) { in x25_create_facilities() 217 *p++ = facilities->throughput; in x25_create_facilities() 296 if (theirs.throughput) { in x25_negotiate_facilities() 297 int theirs_in = theirs.throughput & 0x0f; in x25_negotiate_facilities() 298 int theirs_out = theirs.throughput & 0xf0; in x25_negotiate_facilities() 299 int ours_in = ours->throughput & 0x0f; in x25_negotiate_facilities() 300 int ours_out = ours->throughput & 0xf0; in x25_negotiate_facilities() 303 new->throughput = (new->throughput & 0xf0) | theirs_in; in x25_negotiate_facilities() 308 new->throughput = (new->throughput & 0x0f) | theirs_out; in x25_negotiate_facilities()
|
/Linux-v4.19/Documentation/block/ |
D | bfq-iosched.txt | 12 throughput high). 15 throughput. So, when needed for achieving a lower latency, BFQ builds 16 schedules that may lead to a lower throughput. If your main or only 18 throughput at all times, then do switch off all low-latency heuristics 21 latency and throughput, or on how to maximize throughput. 35 support is enabled), then the sustainable throughput with BFQ 98 High throughput 100 On hard disks, BFQ achieves up to 30% higher throughput than CFQ, and 101 up to 150% higher throughput than DEADLINE and NOOP, with all the 104 instead, about the same throughput as the other schedulers. [all …]
|
D | cfq-iosched.txt | 24 seeks and see improved throughput. 27 level and one should see an overall improved throughput on faster storage 37 throughput and acceptable latencies. 79 multiple queues in the group at the same time and achieve higher throughput 89 throughput. Disabling low latency (setting it to 0) ignores target latency, 99 then to meet the latency constraints, throughput may decrease because of less 105 throughput and read latency.
|
D | deadline-iosched.txt | 42 throughput. When low latency is the primary concern, smaller is better (where 44 generally improves throughput, at the cost of latency variation.
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-class-net-batman-adv | 27 Defines the throughput value to be used by B.A.T.M.A.N. V 28 when estimating the link throughput using this interface. 30 estimate the throughput by itself.
|
D | sysfs-driver-xen-blkfront | 8 is 32 - higher value means more potential throughput but more
|
/Linux-v4.19/drivers/net/wireless/mediatek/mt76/ |
D | mac80211.c | 81 { .throughput = 0 * 1024, .blink_time = 334 }, 82 { .throughput = 1 * 1024, .blink_time = 260 }, 83 { .throughput = 5 * 1024, .blink_time = 220 }, 84 { .throughput = 10 * 1024, .blink_time = 190 }, 85 { .throughput = 20 * 1024, .blink_time = 170 }, 86 { .throughput = 50 * 1024, .blink_time = 150 }, 87 { .throughput = 70 * 1024, .blink_time = 130 }, 88 { .throughput = 100 * 1024, .blink_time = 110 }, 89 { .throughput = 200 * 1024, .blink_time = 80 }, 90 { .throughput = 300 * 1024, .blink_time = 50 },
|
/Linux-v4.19/Documentation/device-mapper/ |
D | dm-service-time.txt | 10 The performance value is a relative throughput value among all paths 20 <relative_throughput>: The relative throughput value of the path 32 <relative_throughput>: The relative throughput value of the path 69 and sda has an average throughput 1GB/s and sdb has 4GB/s,
|
/Linux-v4.19/drivers/gpu/drm/radeon/ |
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-v4.19/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_benchmark.c | 66 unsigned int throughput = (n * (size >> 10)) / time; in amdgpu_benchmark_log_results() local 70 throughput * 8, throughput); in amdgpu_benchmark_log_results()
|
/Linux-v4.19/kernel/ |
D | Kconfig.preempt | 10 throughput. It will still provide good latencies most of the 27 at the cost of slightly lower throughput. 50 system is under load, at the cost of slightly lower throughput
|
/Linux-v4.19/tools/testing/selftests/net/ |
D | tcp_mmap.c | 144 double throughput; in child_thread() local 215 throughput = 0; in child_thread() 217 throughput = total * 8.0 / (double)delta_usec / 1000.0; in child_thread() 229 throughput, in child_thread()
|
/Linux-v4.19/drivers/net/wireless/ath/ath9k/ |
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 },
|
D | init.c | 87 { .throughput = 0 * 1024, .blink_time = 334 }, 88 { .throughput = 1 * 1024, .blink_time = 260 }, 89 { .throughput = 5 * 1024, .blink_time = 220 }, 90 { .throughput = 10 * 1024, .blink_time = 190 }, 91 { .throughput = 20 * 1024, .blink_time = 170 }, 92 { .throughput = 50 * 1024, .blink_time = 150 }, 93 { .throughput = 70 * 1024, .blink_time = 130 }, 94 { .throughput = 100 * 1024, .blink_time = 110 }, 95 { .throughput = 200 * 1024, .blink_time = 80 }, 96 { .throughput = 300 * 1024, .blink_time = 50 },
|
/Linux-v4.19/Documentation/ide/ |
D | ide-tape.txt | 32 Maximal throughput with minimal bus load will usually be achieved in the 49 In order to maximize bus throughput, we currently use the DSC 64 a method by which we can achieve higher throughput when
|
/Linux-v4.19/drivers/staging/rtlwifi/phydm/txbf/ |
D | phydm_hal_txbf_api.h | 28 u8 phydm_get_mu_bfee_snding_decision(void *dm_void, u16 throughput);
|
/Linux-v4.19/include/uapi/linux/ |
D | x25.h | 106 unsigned int throughput; member
|
/Linux-v4.19/drivers/atm/ |
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-v4.19/Documentation/arm/OMAP/ |
D | omap_pm | 7 throughput constraints to the kernel power management code. 20 latency and throughput, rather than units which are specific to OMAP 43 4. Set the minimum bus throughput needed by a device:
|