diff options
author | Eric Dumazet <edumazet@google.com> | 2019-02-26 09:49:11 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-02-26 13:16:03 -0800 |
commit | 921f9a0f2e8c326bfcdde7a59be0bac801a3d588 (patch) | |
tree | 590ede430a2a25ca46c5e171b4f74a6c203fbc6f /net/ipv4/tcp.c | |
parent | a43e052beacb2c0cecd0e807590b70fc4ff99dba (diff) | |
download | linux-921f9a0f2e8c326bfcdde7a59be0bac801a3d588.tar.gz linux-921f9a0f2e8c326bfcdde7a59be0bac801a3d588.tar.bz2 linux-921f9a0f2e8c326bfcdde7a59be0bac801a3d588.zip |
tcp: convert tcp_md5_needed to static_branch API
We prefer static_branch_unlikely() over static_key_false() these days.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp.c')
-rw-r--r-- | net/ipv4/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index e2fa6eb9f81a..ad07dd71063d 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -3699,7 +3699,7 @@ bool tcp_alloc_md5sig_pool(void) if (!tcp_md5sig_pool_populated) { __tcp_alloc_md5sig_pool(); if (tcp_md5sig_pool_populated) - static_key_slow_inc(&tcp_md5_needed); + static_branch_inc(&tcp_md5_needed); } mutex_unlock(&tcp_md5sig_mutex); |