Home
last modified time | relevance | path

Searched refs:throughput (Results 1 – 25 of 103) sorted by relevance

12345

/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/dvm/
Dled.c56 { .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/
Dbat_v.c127 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 …]
Dbat_v_ogm.c214 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 …]
Dbat_v_elp.c83 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()
Dgateway_common.c47 const char *description, u32 *throughput) in batadv_parse_throughput() argument
98 *throughput = lthroughput; in batadv_parse_throughput()
Dgateway_common.h55 const char *description, u32 *throughput);
/Linux-v4.19/net/x25/
Dx25_facilities.c108 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/
Dbfq-iosched.txt12 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 …]
Dcfq-iosched.txt24 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.
Ddeadline-iosched.txt42 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/
Dsysfs-class-net-batman-adv27 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.
Dsysfs-driver-xen-blkfront8 is 32 - higher value means more potential throughput but more
/Linux-v4.19/drivers/net/wireless/mediatek/mt76/
Dmac80211.c81 { .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/
Ddm-service-time.txt10 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/
Dradeon_benchmark.c80 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/
Damdgpu_benchmark.c66 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/
DKconfig.preempt10 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/
Dtcp_mmap.c144 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/
Dhtc_drv_init.c51 { .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 },
Dinit.c87 { .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/
Dide-tape.txt32 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/
Dphydm_hal_txbf_api.h28 u8 phydm_get_mu_bfee_snding_decision(void *dm_void, u16 throughput);
/Linux-v4.19/include/uapi/linux/
Dx25.h106 unsigned int throughput; member
/Linux-v4.19/drivers/atm/
DKconfig68 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/
Domap_pm7 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:

12345