diff options
author | Jiang Wang <jiang.wang@bytedance.com> | 2021-08-16 19:03:21 +0000 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2021-08-16 18:43:39 -0700 |
commit | 94531cfcbe79c3598acf96806627b2137ca32eb9 (patch) | |
tree | 5936ad0cab83523153696d063f181c4dcce75b6d /net/core | |
parent | 77462de14a43f4d98dbd8de0f5743a4e02450b1d (diff) | |
download | linux-94531cfcbe79c3598acf96806627b2137ca32eb9.tar.gz linux-94531cfcbe79c3598acf96806627b2137ca32eb9.tar.bz2 linux-94531cfcbe79c3598acf96806627b2137ca32eb9.zip |
af_unix: Add unix_stream_proto for sockmap
Previously, sockmap for AF_UNIX protocol only supports
dgram type. This patch add unix stream type support, which
is similar to unix_dgram_proto. To support sockmap, dgram
and stream cannot share the same unix_proto anymore, because
they have different implementations, such as unhash for stream
type (which will remove closed or disconnected sockets from the map),
so rename unix_proto to unix_dgram_proto and add a new
unix_stream_proto.
Also implement stream related sockmap functions.
And add dgram key words to those dgram specific functions.
Signed-off-by: Jiang Wang <jiang.wang@bytedance.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Reviewed-by: Cong Wang <cong.wang@bytedance.com>
Acked-by: Jakub Sitnicki <jakub@cloudflare.com>
Acked-by: John Fastabend <john.fastabend@gmail.com>
Link: https://lore.kernel.org/bpf/20210816190327.2739291-3-jiang.wang@bytedance.com
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/sock_map.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/sock_map.c b/net/core/sock_map.c index ae5fa4338d9c..e252b8ec2b85 100644 --- a/net/core/sock_map.c +++ b/net/core/sock_map.c @@ -1494,6 +1494,7 @@ void sock_map_unhash(struct sock *sk) rcu_read_unlock(); saved_unhash(sk); } +EXPORT_SYMBOL_GPL(sock_map_unhash); void sock_map_close(struct sock *sk, long timeout) { |