Skip to content

Commit 7e74417

Browse files
nealcardwelldavem330
authored andcommitted
tcp: increase ICSK_CA_PRIV_SIZE from 64 bytes to 88
The TCP CUBIC module already uses 64 bytes. The upcoming TCP BBR module uses 88 bytes. Signed-off-by: Van Jacobson <[email protected]> Signed-off-by: Neal Cardwell <[email protected]> Signed-off-by: Yuchung Cheng <[email protected]> Signed-off-by: Nandita Dukkipati <[email protected]> Signed-off-by: Eric Dumazet <[email protected]> Signed-off-by: Soheil Hassas Yeganeh <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent c040276 commit 7e74417

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/net/inet_connection_sock.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ struct inet_connection_sock {
134134
} icsk_mtup;
135135
u32 icsk_user_timeout;
136136

137-
u64 icsk_ca_priv[64 / sizeof(u64)];
138-
#define ICSK_CA_PRIV_SIZE (8 * sizeof(u64))
137+
u64 icsk_ca_priv[88 / sizeof(u64)];
138+
#define ICSK_CA_PRIV_SIZE (11 * sizeof(u64))
139139
};
140140

141141
#define ICSK_TIME_RETRANS 1 /* Retransmit timer */

0 commit comments

Comments
 (0)