On Wed, Mar 10, 2021 at 06:32 AM CET, Cong Wang wrote:
> From: Cong Wang <cong.w...@bytedance.com>
>
> Currently we rely on lock_sock to protect ingress_msg,
> it is too big for this, we can actually just use a spinlock
> to protect this list like protecting other skb queues.
>
> __tcp_bpf_recvmsg() is still special because of peeking,
> it still has to use lock_sock.
>
> Cc: John Fastabend <john.fastab...@gmail.com>
> Cc: Daniel Borkmann <dan...@iogearbox.net>
> Cc: Jakub Sitnicki <ja...@cloudflare.com>
> Cc: Lorenz Bauer <l...@cloudflare.com>
> Signed-off-by: Cong Wang <cong.w...@bytedance.com>
> ---

One nit below.

Acked-by: Jakub Sitnicki <ja...@cloudflare.com>

>  include/linux/skmsg.h | 46 +++++++++++++++++++++++++++++++++++++++++++
>  net/core/skmsg.c      |  3 +++
>  net/ipv4/tcp_bpf.c    | 18 ++++++-----------
>  3 files changed, 55 insertions(+), 12 deletions(-)
>
> diff --git a/include/linux/skmsg.h b/include/linux/skmsg.h
> index 6c09d94be2e9..7333bf881b81 100644
> --- a/include/linux/skmsg.h
> +++ b/include/linux/skmsg.h
> @@ -89,6 +89,7 @@ struct sk_psock {
>  #endif
>       struct sk_buff_head             ingress_skb;
>       struct list_head                ingress_msg;
> +     spinlock_t                      ingress_lock;
>       unsigned long                   state;
>       struct list_head                link;
>       spinlock_t                      link_lock;
> @@ -284,7 +285,45 @@ static inline struct sk_psock *sk_psock(const struct 
> sock *sk)
>  static inline void sk_psock_queue_msg(struct sk_psock *psock,
>                                     struct sk_msg *msg)
>  {
> +     spin_lock_bh(&psock->ingress_lock);
>       list_add_tail(&msg->list, &psock->ingress_msg);
> +     spin_unlock_bh(&psock->ingress_lock);
> +}
> +
> +static inline struct sk_msg *sk_psock_deque_msg(struct sk_psock *psock)

Should be sk_psock_deque*ue*_msg()?

[...]

Reply via email to