diff options
author | Paolo Abeni <pabeni@redhat.com> | 2020-03-19 11:06:30 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-20 04:19:34 +0100 |
commit | 0be534f5c0fd153c0f2584db333efc504f8490c9 (patch) | |
tree | 42157fd4e7302cf2e71919400b7d74a2fca9a338 /net/mptcp/protocol.h | |
parent | Merge tag 'mlx5-updates-2020-03-17' of git://git.kernel.org/pub/scm/linux/ker... (diff) | |
download | linux-0be534f5c0fd153c0f2584db333efc504f8490c9.tar.xz linux-0be534f5c0fd153c0f2584db333efc504f8490c9.zip |
mptcp: rename fourth ack field
The name is misleading, it actually tracks the 'fully established'
status.
Reviewed-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mptcp/protocol.h')
-rw-r--r-- | net/mptcp/protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mptcp/protocol.h b/net/mptcp/protocol.h index 9baf6fcba914..eb3f65264a40 100644 --- a/net/mptcp/protocol.h +++ b/net/mptcp/protocol.h @@ -119,7 +119,7 @@ struct mptcp_subflow_context { u32 map_data_len; u32 request_mptcp : 1, /* send MP_CAPABLE */ mp_capable : 1, /* remote is MPTCP capable */ - fourth_ack : 1, /* send initial DSS */ + fully_established : 1, /* path validated */ conn_finished : 1, map_valid : 1, mpc_map : 1, |