diff options
author | Daniel Borkmann <daniel@iogearbox.net> | 2018-10-13 02:45:57 +0200 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-10-15 12:23:19 -0700 |
commit | 1243a51f6c05ecbb2c5c9e02fdcc1e7a06f76f26 (patch) | |
tree | 702caa53bfd6a96779e5631cc654dc8acebea858 /include/net/tcp.h | |
parent | 8b9088f806e1ccd10c3d48b3b6d3d5d7855d92c5 (diff) | |
download | blackbird-op-linux-1243a51f6c05ecbb2c5c9e02fdcc1e7a06f76f26.tar.gz blackbird-op-linux-1243a51f6c05ecbb2c5c9e02fdcc1e7a06f76f26.zip |
tcp, ulp: remove ulp bits from sockmap
In order to prepare sockmap logic to be used in combination with kTLS
we need to detangle it from ULP, and further split it in later commits
into a generic API.
Joint work with John.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r-- | include/net/tcp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 0d2929223c70..8f5cef67fd35 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -2057,7 +2057,6 @@ struct tcp_ulp_ops { int tcp_register_ulp(struct tcp_ulp_ops *type); void tcp_unregister_ulp(struct tcp_ulp_ops *type); int tcp_set_ulp(struct sock *sk, const char *name); -int tcp_set_ulp_id(struct sock *sk, const int ulp); void tcp_get_available_ulp(char *buf, size_t len); void tcp_cleanup_ulp(struct sock *sk); |