Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1607953 > unrolled thread
| Started by | Alexander Duyck <alexander.duyck@gmail.com> |
|---|---|
| First post | 2017-03-23 22:40 +0100 |
| Last post | 2017-03-23 23:50 +0100 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[net-next PATCH v2 0/8] Add busy poll support for epoll Alexander Duyck <alexander.duyck@gmail.com> - 2017-03-23 22:40 +0100
Re: [net-next PATCH v2 0/8] Add busy poll support for epoll Alexei Starovoitov <alexei.starovoitov@gmail.com> - 2017-03-23 23:10 +0100
Re: [net-next PATCH v2 0/8] Add busy poll support for epoll Alexander Duyck <alexander.duyck@gmail.com> - 2017-03-23 23:40 +0100
Re: [net-next PATCH v2 0/8] Add busy poll support for epoll Eric Dumazet <edumazet@google.com> - 2017-03-23 23:50 +0100
| From | Alexander Duyck <alexander.duyck@gmail.com> |
|---|---|
| Date | 2017-03-23 22:40 +0100 |
| Subject | [net-next PATCH v2 0/8] Add busy poll support for epoll |
| Message-ID | <toiCB-8g8-3@gated-at.bofh.it> |
This is my second pass at trying to add support for busy polling when using
epoll. It is pretty much a full rewrite as I have made serious changes to
most of the patches.
In the v1 series I had submitted we only allowed epoll to make use of busy
poll when all NAPI IDs were the same. I gave this some more thought and
after making several other changes based on feedback from Eric Dumazet I
decided to try changing the main concept a bit and instead we will now
attempt to busy poll on the NAPI ID of the last socket added to the ready
list. By doing it this way we are able to take advantage of the changes
Eric has already made so that we get woken up by the softirq, we then pull
packets via busy poll, and will return to the softirq until we are woken up
and a new socket has been added to the ready list.
Most of the changes in this set authored by me are meant to be cleanup or
fixes for various things. For example, I am trying to make it so that we
don't perform hash look-ups for the NAPI instance when we are only working
with sender_cpu and the like.
The most complicated change of the set is probably the clean-ups for the
timeout. I realized that the timeout could potentially get into a state
where it would never timeout if the local_clock() was approaching a
rollover and the added busy poll usecs interval would be enough to roll it
over. Because we were shifting the value you would never be able to get
time_after to actually trigger.
At the heart of this set is the last 3 patches which enable epoll support
and add support for obtaining the NAPI ID of a given socket. With these
It becomes possible for an application to make use of epoll and get optimal
busy poll utilization by stacking multiple sockets with the same NAPI ID on
the same epoll context.
---
Alexander Duyck (5):
net: Busy polling should ignore sender CPUs
tcp: Record Rx hash and NAPI ID in tcp_child_process
net: Only define skb_mark_napi_id in one spot instead of two
net: Change return type of sk_busy_loop from bool to void
net: Track start of busy loop instead of when it should end
Sridhar Samudrala (3):
net: Commonize busy polling code to focus on napi_id instead of socket
epoll: Add busy poll support to epoll with socket fds.
net: Introduce SO_INCOMING_NAPI_ID
arch/alpha/include/uapi/asm/socket.h | 2 +
arch/avr32/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 | 1
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 +
fs/eventpoll.c | 93 +++++++++++++++++++++++++++
fs/select.c | 16 ++---
include/net/busy_poll.h | 112 ++++++++++++++++++++------------
include/uapi/asm-generic/socket.h | 2 +
net/core/datagram.c | 8 ++
net/core/dev.c | 42 ++++++------
net/core/sock.c | 23 +++++++
net/core/sysctl_net_core.c | 11 +++
net/ipv4/tcp_ipv4.c | 2 -
net/ipv4/tcp_minisocks.c | 4 +
net/ipv6/tcp_ipv6.c | 2 -
net/sctp/socket.c | 9 ++-
24 files changed, 264 insertions(+), 83 deletions(-)
--
[toc] | [next] | [standalone]
| From | Alexei Starovoitov <alexei.starovoitov@gmail.com> |
|---|---|
| Date | 2017-03-23 23:10 +0100 |
| Message-ID | <toj5D-ic-5@gated-at.bofh.it> |
| In reply to | #1607953 |
On Thu, Mar 23, 2017 at 02:36:29PM -0700, Alexander Duyck wrote: > This is my second pass at trying to add support for busy polling when using > epoll. It is pretty much a full rewrite as I have made serious changes to > most of the patches. > > In the v1 series I had submitted we only allowed epoll to make use of busy > poll when all NAPI IDs were the same. I gave this some more thought and > after making several other changes based on feedback from Eric Dumazet I > decided to try changing the main concept a bit and instead we will now > attempt to busy poll on the NAPI ID of the last socket added to the ready > list. By doing it this way we are able to take advantage of the changes > Eric has already made so that we get woken up by the softirq, we then pull > packets via busy poll, and will return to the softirq until we are woken up > and a new socket has been added to the ready list. > > Most of the changes in this set authored by me are meant to be cleanup or > fixes for various things. For example, I am trying to make it so that we > don't perform hash look-ups for the NAPI instance when we are only working > with sender_cpu and the like. > > The most complicated change of the set is probably the clean-ups for the > timeout. I realized that the timeout could potentially get into a state > where it would never timeout if the local_clock() was approaching a > rollover and the added busy poll usecs interval would be enough to roll it > over. Because we were shifting the value you would never be able to get > time_after to actually trigger. > > At the heart of this set is the last 3 patches which enable epoll support > and add support for obtaining the NAPI ID of a given socket. With these > It becomes possible for an application to make use of epoll and get optimal > busy poll utilization by stacking multiple sockets with the same NAPI ID on > the same epoll context. it all sounds awesome, but i cannot quite visualize the impact. Can you post some sample code/minibenchmark and numbers before/after? Thanks!
[toc] | [prev] | [next] | [standalone]
| From | Alexander Duyck <alexander.duyck@gmail.com> |
|---|---|
| Date | 2017-03-23 23:40 +0100 |
| Message-ID | <tojyG-sG-15@gated-at.bofh.it> |
| In reply to | #1607969 |
On Thu, Mar 23, 2017 at 3:07 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote: > On Thu, Mar 23, 2017 at 02:36:29PM -0700, Alexander Duyck wrote: >> This is my second pass at trying to add support for busy polling when using >> epoll. It is pretty much a full rewrite as I have made serious changes to >> most of the patches. >> >> In the v1 series I had submitted we only allowed epoll to make use of busy >> poll when all NAPI IDs were the same. I gave this some more thought and >> after making several other changes based on feedback from Eric Dumazet I >> decided to try changing the main concept a bit and instead we will now >> attempt to busy poll on the NAPI ID of the last socket added to the ready >> list. By doing it this way we are able to take advantage of the changes >> Eric has already made so that we get woken up by the softirq, we then pull >> packets via busy poll, and will return to the softirq until we are woken up >> and a new socket has been added to the ready list. >> >> Most of the changes in this set authored by me are meant to be cleanup or >> fixes for various things. For example, I am trying to make it so that we >> don't perform hash look-ups for the NAPI instance when we are only working >> with sender_cpu and the like. >> >> The most complicated change of the set is probably the clean-ups for the >> timeout. I realized that the timeout could potentially get into a state >> where it would never timeout if the local_clock() was approaching a >> rollover and the added busy poll usecs interval would be enough to roll it >> over. Because we were shifting the value you would never be able to get >> time_after to actually trigger. >> >> At the heart of this set is the last 3 patches which enable epoll support >> and add support for obtaining the NAPI ID of a given socket. With these >> It becomes possible for an application to make use of epoll and get optimal >> busy poll utilization by stacking multiple sockets with the same NAPI ID on >> the same epoll context. > > it all sounds awesome, but i cannot quite visualize the impact. > Can you post some sample code/minibenchmark and numbers before/after? > > Thanks! > Anything specific you are looking for? I can probably work with our team internally to setup the benchmark in the next day or so. I've been doing most of my benchmarking at my desk with sockperf with just one thread and multiple sockets and seeing some modest savings with my round trip times dropping from something like 18 microseconds on average to 8 microseconds for ping-pong tests. Thanks. - Alex
[toc] | [prev] | [next] | [standalone]
| From | Eric Dumazet <edumazet@google.com> |
|---|---|
| Date | 2017-03-23 23:50 +0100 |
| Message-ID | <tojIl-wf-3@gated-at.bofh.it> |
| In reply to | #1607998 |
On Thu, Mar 23, 2017 at 3:38 PM, Alexander Duyck <alexander.duyck@gmail.com> wrote: > On Thu, Mar 23, 2017 at 3:07 PM, Alexei Starovoitov >> it all sounds awesome, but i cannot quite visualize the impact. >> Can you post some sample code/minibenchmark and numbers before/after? >> >> Thanks! >> > > Anything specific you are looking for? I can probably work with our > team internally to setup the benchmark in the next day or so. > > I've been doing most of my benchmarking at my desk with sockperf with > just one thread and multiple sockets and seeing some modest savings > with my round trip times dropping from something like 18 microseconds > on average to 8 microseconds for ping-pong tests. Same reduction for me, on 1000/1000 bytes RPC. 26 usec -> 16 usec per transaction (If you use sockperf, beware that it displays half round trips) Also note that the gains also depends on how the interrupt mitigation parameters are set.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web