From: Tom Herbert <tom@herbertland.com>
To: <davem@davemloft.net>, <netdev@vger.kernel.org>
Subject: [PATCH net-next 0/2] net: Add incoming CPU mask to sockets
Date: Tue, 19 May 2015 12:01:47 -0700 [thread overview]
Message-ID: <1432062109-1472984-1-git-send-email-tom@herbertland.com> (raw)
Added matching of CPU to a socket CPU mask. This is useful for TCP
listeners and unconnected UDP. This works with SO_REUSPORT to steer
packets to listener sockets based on CPU affinity. These patches
allow steering packets to listeners based on numa locality. This is
only useful for passive connections.
Tested: 200 TCP_RR with --r 512,512 streams ran against an echo server
with that sets both SO_REUSEPORT and SO_INCOMING_CPU_MASK. In the
test case used taskset to pin an instance to a set of CPUs corresponding
to a numa node and set SO_INCOMING_CPU_MASK to the same set of CPUS.
CPU utilization is reported from the echo server side.
IPv4
No INCOMING_CPU_MASK
83.48% CPU utilization
1627173 tps
106/185/382 50/90/99% latencies
With INCOMING_CPU_MASK
77.61% CPU utilization
1669853 tps
103/181/378 50/90/99% latencies
IPv6
No INCOMING_CPU_MASK
84.82% CPU utilization
1551730 tps
111/195/392 50/90/99% latencies
With INCOMING_CPU_MASK
79.25% CPU utilization
1571911 tps
110/191/381 50/90/99% latencies
Tom Herbert (2):
kernel: Make compat bitmap functions externally visible
net: Add incoming CPU mask to sockets
arch/alpha/include/uapi/asm/socket.h | 2 +
arch/avr32/include/uapi/asm/socket.h | 2 +
arch/cris/include/uapi/asm/socket.h | 2 +
arch/frv/include/uapi/asm/socket.h | 2 +
arch/ia64/include/uapi/asm/socket.h | 2 +
arch/m32r/include/uapi/asm/socket.h | 2 +
arch/mips/include/uapi/asm/socket.h | 2 +
arch/mn10300/include/uapi/asm/socket.h | 2 +
arch/parisc/include/uapi/asm/socket.h | 2 +
arch/powerpc/include/uapi/asm/socket.h | 2 +
arch/s390/include/uapi/asm/socket.h | 2 +
arch/sparc/include/uapi/asm/socket.h | 2 +
arch/xtensa/include/uapi/asm/socket.h | 2 +
include/linux/compat.h | 2 +
include/net/sock.h | 27 ++++++++++++
include/uapi/asm-generic/socket.h | 2 +
kernel/compat.c | 7 ++-
net/compat.c | 56 ++++++++++++++++++++++++
net/core/sock.c | 80 ++++++++++++++++++++++++++++++++++
net/ipv4/inet_hashtables.c | 3 ++
net/ipv4/udp.c | 6 +++
net/ipv6/inet6_hashtables.c | 3 ++
net/ipv6/udp.c | 3 ++
23 files changed, 213 insertions(+), 2 deletions(-)
--
1.8.1
next reply other threads:[~2015-05-19 19:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-19 19:01 Tom Herbert [this message]
2015-05-19 19:01 ` [PATCH net-next 1/2] kernel: Make compat bitmap functions externally visible Tom Herbert
2015-05-19 19:01 ` [PATCH net-next 2/2] net: Add incoming CPU mask to sockets Tom Herbert
2015-05-19 20:08 ` Eric Dumazet
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1432062109-1472984-1-git-send-email-tom@herbertland.com \
--to=tom@herbertland.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).