mbox series

[net-next,v2,0/2] udp: avoid false sharing on receive

Message ID cover.1666287924.git.pabeni@redhat.com (mailing list archive)
Headers show
Series udp: avoid false sharing on receive | expand

Message

Paolo Abeni Oct. 20, 2022, 5:48 p.m. UTC
Under high UDP load, the BH processing and the user-space receiver can
run on different cores.

The UDP implementation does a lot of effort to avoid false sharing in
the receive path, but recent changes to the struct sock layout moved
the sk_forward_alloc and the sk_rcvbuf fields on the same cacheline:

        /* --- cacheline 4 boundary (256 bytes) --- */
                struct sk_buff *   tail;
        } sk_backlog;
        int                        sk_forward_alloc;
        unsigned int               sk_reserved_mem;
        unsigned int               sk_ll_usec;
        unsigned int               sk_napi_id;
        int                        sk_rcvbuf;

sk_forward_alloc is updated by the BH, while sk_rcvbuf is accessed by
udp_recvmsg(), causing false sharing.

A possible solution would be to re-order the struct sock fields to avoid
the false sharing. Such change is subject to being invalidated by future
changes and could have negative side effects on other workload.

Instead this series uses a different approach, touching only the UDP
socket layout. 

The first patch generalizes the custom setsockopt infrastructure, to
allow UDP tracking the buffer size, and the second patch addresses the
issue, copying the relevant buffer information into an already hot
cacheline.

Overall the above gives a 10% peek throughput increase under UDP flood.

v1 -> v2:
 - introduce and use a common helper to initialize the UDP v4/v6 sockets
   (Kuniyuki)

Paolo Abeni (2):
  net: introduce and use custom sockopt socket flag
  udp: track the forward memory release threshold in an hot cacheline

 include/linux/net.h  |  1 +
 include/linux/udp.h  |  3 +++
 include/net/udp.h    |  9 +++++++++
 net/ipv4/udp.c       | 18 +++++++++++++++---
 net/ipv6/udp.c       |  4 ++--
 net/mptcp/protocol.c |  4 ++++
 net/socket.c         |  8 +-------
 7 files changed, 35 insertions(+), 12 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org Oct. 24, 2022, 10:30 a.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Thu, 20 Oct 2022 19:48:50 +0200 you wrote:
> Under high UDP load, the BH processing and the user-space receiver can
> run on different cores.
> 
> The UDP implementation does a lot of effort to avoid false sharing in
> the receive path, but recent changes to the struct sock layout moved
> the sk_forward_alloc and the sk_rcvbuf fields on the same cacheline:
> 
> [...]

Here is the summary with links:
  - [net-next,v2,1/2] net: introduce and use custom sockopt socket flag
    https://git.kernel.org/netdev/net-next/c/a5ef058dc4d9
  - [net-next,v2,2/2] udp: track the forward memory release threshold in an hot cacheline
    https://git.kernel.org/netdev/net-next/c/8a3854c7b8e4

You are awesome, thank you!