diff options
| author | David S. Miller <[email protected]> | 2019-12-10 17:31:15 -0800 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2019-12-10 17:31:15 -0800 |
| commit | bb9d8454bb0fed028558d1e66b12d50db5e43e06 (patch) | |
| tree | 0158a019a37761b131b5bb2615409dff904bc28f /net/tipc/bearer.h | |
| parent | 08cbc75f96029d3092664213a844a5e25523aa35 (diff) | |
| parent | 16ad3f4022bb53c7541a0bf0410b32d0231ebef9 (diff) | |
Merge branch 'tipc-introduce-variable-window-congestion-control'
Jon Maloy says:
====================
tipc: introduce variable window congestion control
We improve thoughput greatly by introducing a variety of the Reno
congestion control algorithm at the link level.
====================
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/tipc/bearer.h')
| -rw-r--r-- | net/tipc/bearer.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/tipc/bearer.h b/net/tipc/bearer.h index d0c79cc6c0c2..bc0023119da2 100644 --- a/net/tipc/bearer.h +++ b/net/tipc/bearer.h @@ -119,7 +119,8 @@ struct tipc_media { char *raw); u32 priority; u32 tolerance; - u32 window; + u32 min_win; + u32 max_win; u32 mtu; u32 type_id; u32 hwaddr_len; @@ -158,7 +159,8 @@ struct tipc_bearer { struct packet_type pt; struct rcu_head rcu; u32 priority; - u32 window; + u32 min_win; + u32 max_win; u32 tolerance; u32 domain; u32 identity; |