diff options
Diffstat (limited to 'net/ipv4/tcp_fastopen.c')
-rw-r--r-- | net/ipv4/tcp_fastopen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_fastopen.c b/net/ipv4/tcp_fastopen.c index 31b08ec38cb8..8c8f0f0af59d 100644 --- a/net/ipv4/tcp_fastopen.c +++ b/net/ipv4/tcp_fastopen.c | |||
@@ -13,7 +13,7 @@ struct tcp_fastopen_context __rcu *tcp_fastopen_ctx; | |||
13 | 13 | ||
14 | static DEFINE_SPINLOCK(tcp_fastopen_ctx_lock); | 14 | static DEFINE_SPINLOCK(tcp_fastopen_ctx_lock); |
15 | 15 | ||
16 | void tcp_fastopen_init_key_once(bool publish) | 16 | void tcp_fastopen_init_key_once(void) |
17 | { | 17 | { |
18 | static u8 key[TCP_FASTOPEN_KEY_LENGTH]; | 18 | static u8 key[TCP_FASTOPEN_KEY_LENGTH]; |
19 | 19 | ||
@@ -23,7 +23,7 @@ void tcp_fastopen_init_key_once(bool publish) | |||
23 | * All call sites of tcp_fastopen_cookie_gen also check | 23 | * All call sites of tcp_fastopen_cookie_gen also check |
24 | * for a valid cookie, so this is an acceptable risk. | 24 | * for a valid cookie, so this is an acceptable risk. |
25 | */ | 25 | */ |
26 | if (net_get_random_once(key, sizeof(key)) && publish) | 26 | if (net_get_random_once(key, sizeof(key))) |
27 | tcp_fastopen_reset_cipher(key, sizeof(key)); | 27 | tcp_fastopen_reset_cipher(key, sizeof(key)); |
28 | } | 28 | } |
29 | 29 | ||