diff options
| author | Greg Kroah-Hartman <[email protected]> | 2022-01-30 15:00:39 +0100 | 
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2022-01-30 15:00:39 +0100 | 
| commit | 7ab004dbcbee38b8a70798835d3ffcd97a985a5e (patch) | |
| tree | 0caa6cb97801736046823ca785a5ba36bf684ac6 /net/mptcp/protocol.h | |
| parent | 710f8af199ee9d72dd87083edd55c5ee250ee6f4 (diff) | |
| parent | 26291c54e111ff6ba87a164d85d4a4e134b7315c (diff) | |
Merge tag 'v5.17-rc2' into char-misc-next
We need the char/misc fixes in here as well.
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'net/mptcp/protocol.h')
| -rw-r--r-- | net/mptcp/protocol.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/net/mptcp/protocol.h b/net/mptcp/protocol.h index 0e6b42c76ea0..85317ce38e3f 100644 --- a/net/mptcp/protocol.h +++ b/net/mptcp/protocol.h @@ -408,7 +408,7 @@ DECLARE_PER_CPU(struct mptcp_delegated_action, mptcp_delegated_actions);  struct mptcp_subflow_context {  	struct	list_head node;/* conn_list of subflows */ -	char	reset_start[0]; +	struct_group(reset,  	unsigned long avg_pacing_rate; /* protected by msk socket lock */  	u64	local_key; @@ -458,7 +458,7 @@ struct mptcp_subflow_context {  	long	delegated_status; -	char	reset_end[0]; +	);  	struct	list_head delegated_node;   /* link into delegated_action, protected by local BH */ @@ -494,7 +494,7 @@ mptcp_subflow_tcp_sock(const struct mptcp_subflow_context *subflow)  static inline void  mptcp_subflow_ctx_reset(struct mptcp_subflow_context *subflow)  { -	memset(subflow->reset_start, 0, subflow->reset_end - subflow->reset_start); +	memset(&subflow->reset, 0, sizeof(subflow->reset));  	subflow->request_mptcp = 1;  } |