mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
net: introduce and use custom sockopt socket flag
We will soon introduce custom setsockopt for UDP sockets, too. Instead of doing even more complex arbitrary checks inside sock_use_custom_sol_socket(), add a new socket flag and set it for the relevant socket types (currently only MPTCP). Reviewed-by: Matthieu Baerts <matthieu.baerts@tessares.net> Signed-off-by: Paolo Abeni <pabeni@redhat.com> Reviewed-by: Eric Dumazet <edumazet@google.com> Acked-by: Kuniyuki Iwashima <kuniyu@amazon.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ea5ed0f00b
commit
a5ef058dc4
3 changed files with 6 additions and 7 deletions
|
@ -2199,13 +2199,7 @@ SYSCALL_DEFINE4(recv, int, fd, void __user *, ubuf, size_t, size,
|
|||
|
||||
static bool sock_use_custom_sol_socket(const struct socket *sock)
|
||||
{
|
||||
const struct sock *sk = sock->sk;
|
||||
|
||||
/* Use sock->ops->setsockopt() for MPTCP */
|
||||
return IS_ENABLED(CONFIG_MPTCP) &&
|
||||
sk->sk_protocol == IPPROTO_MPTCP &&
|
||||
sk->sk_type == SOCK_STREAM &&
|
||||
(sk->sk_family == AF_INET || sk->sk_family == AF_INET6);
|
||||
return test_bit(SOCK_CUSTOM_SOCKOPT, &sock->flags);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue