diff options
author | Christoph Hellwig | 2020-05-28 07:12:20 +0200 |
---|---|---|
committer | David S. Miller | 2020-05-28 11:11:45 -0700 |
commit | ddd061b8daed3ce0c01109a69c9a2a9f9669f01a (patch) | |
tree | eebfb22dbad653b06ad66ae75863f3ca011510ea /include/linux/tcp.h | |
parent | 12abc5ee7873a085cc280240822b8ac53c86fecd (diff) |
tcp: add tcp_sock_set_quickack
Add a helper to directly set the TCP_QUICKACK sockopt from kernel space
without going through a fake uaccess. Cleanup the callers to avoid
pointless wrappers now that this is a simple function call.
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 9e42c7fe50a8..2eaf8320b9db 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h @@ -499,5 +499,6 @@ int tcp_skb_shift(struct sk_buff *to, struct sk_buff *from, int pcount, 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); #endif /* _LINUX_TCP_H */ |