diff options
author | Christoph Hellwig <hch@lst.de> | 2020-05-28 07:12:22 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-05-28 11:11:45 -0700 |
commit | c488aeadcbd002a992593e6090d54e8ac27c4310 (patch) | |
tree | 88fa0208206176037a7bd7fba3784e92c00e6988 /include/linux/tcp.h | |
parent | 557eadfcc5ee8f8fa98a795e05ed21db58a65db5 (diff) | |
download | linux-c488aeadcbd002a992593e6090d54e8ac27c4310.tar.gz linux-c488aeadcbd002a992593e6090d54e8ac27c4310.tar.bz2 linux-c488aeadcbd002a992593e6090d54e8ac27c4310.zip |
tcp: add tcp_sock_set_user_timeout
Add a helper to directly set the TCP_USER_TIMEOUT sockopt from kernel
space without going through a fake uaccess.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/tcp.h')
-rw-r--r-- | include/linux/tcp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 6aa4ae5ebf3d..de682143efe4 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h @@ -501,5 +501,6 @@ void tcp_sock_set_cork(struct sock *sk, bool on); void tcp_sock_set_nodelay(struct sock *sk); void tcp_sock_set_quickack(struct sock *sk, int val); int tcp_sock_set_syncnt(struct sock *sk, int val); +void tcp_sock_set_user_timeout(struct sock *sk, u32 val); #endif /* _LINUX_TCP_H */ |