From: Shawn Bohrer <sbohrer@rgmadvisors.com>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: netdev@vger.kernel.org
Subject: Re: Heavy spin_lock contention in __udp4_lib_mcast_deliver increase
Date: Thu, 26 Apr 2012 11:28:19 -0500 [thread overview]
Message-ID: <20120426162819.GD2479@BohrerMBP.rgmadvisors.com> (raw)
In-Reply-To: <1335455595.2775.47.camel@edumazet-glaptop>
On Thu, Apr 26, 2012 at 05:53:15PM +0200, Eric Dumazet wrote:
> On Thu, 2012-04-26 at 10:15 -0500, Shawn Bohrer wrote:
> > I've been doing some UDP multicast benchmarking and noticed that as we
> > increase the number of sockets/multicast addresses the performance
> > degrades. The test I'm running has multiple machines sending packets
> > on multiple multicast addresses. A single receiving machine opens one
> > socket per multicast address to receive all the packets. The
> > receiving process is bound to a core that is not processing
> > interrupts.
> >
> > Running this test with 300 multicast addresses and sockets and
> > profiling the receiving machine with 'perf -a -g' I can see the
> > following:
> >
> >
> > # Events: 45K cycles
> > #
> > # Overhead
> > # ........ .....................................
> > #
> > 52.56% [k] _raw_spin_lock
> > |
> > |--99.09%-- __udp4_lib_mcast_deliver
> > 20.10% [k] __udp4_lib_mcast_deliver
> > |
> > --- __udp4_lib_rcv
> >
> > So if I understand this correctly 52.56% of the time is spent
> > contending for the spin_lock in __udp4_lib_mcast_deliver. If I
> > understand the code correctly it appears that for every packet
> > received we walk the list of all UDP sockets while holding the
> > spin_lock. Therefore I believe the thing that hurts so much in this
> > case is that we have a lot of UDP sockets.
> >
> > Are there any ideas on how we can improve the performance in this
> > case? Honestly I have two ideas though my understanding of the
> > network stack is limited and it is unclear to me how to implement
> > either of them.
> >
> > The first idea is to use RCU instead of acquiring the spin_lock. This
> > is what the Unicast path does however looking back to 271b72c7 "udp:
> > RCU handling for Unicast packets." Eric points out that the multicast
> > path is difficult. It appears from that commit description that the
> > problem is that since we have to find all sockets interested in
> > receiving the packet instead of just one that restarting the scan of
> > the hlist could lead us to deliver the packet twice to the same
> > socket. That commit is rather old though I believe things may have
> > changed. Looking at commit 1240d137 "ipv4: udp: Optimise multicast
> > reception" I can see that Eric also has already done some work to
> > reduce how long the spin_lock is held in __udp4_lib_mcast_deliver().
> > That commit also says "It's also a base for a future RCU conversion of
> > multicast recption". Is the idea that you could remove duplicate
> > sockets within flush_stack()? Actually I don't think that would work
> > since flush_stack() can be called multiple times if the stack gets
> > full.
> >
> > The second idea would be to hash the sockets to reduce the number of
> > sockets to walk for each packet. Once again it looks like the Unicast
> > path already does this in commits 512615b6b "udp: secondary hash on
> > (local port, local address)" and 5051ebd27 "ipv4: udp: optimize
> > unicast RX path". Perhaps these hash lists could be used, however I
> > don't think they can since they currently use RCU and thus it might
> > depend on converting to RCU first.
>
> Let me understand
>
> You have 300 sockets bound to the same port, so a single message must be
> copied 300 times and delivered to those sockets ?
No in this case it is 300 unique multicast addresses, and there is one
socket listening to each multicast address. So a single message is
only copied once to a single socket. The bottle neck appears to be
that even though a single message is only going to get copied to a
single socket we still have to walk the list of all 300 sockets while
holding the spin lock to figure that out. The incoming packet rate is
also roughly evenly distributed across all 300 multicast addresses so
even though we have multiple receive queues they are all contending
for the same spin lock.
--
Shawn
--
---------------------------------------------------------------
This email, along with any attachments, is confidential. If you
believe you received this message in error, please contact the
sender immediately and delete all copies of the message.
Thank you.
next prev parent reply other threads:[~2012-04-26 16:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-26 15:15 Heavy spin_lock contention in __udp4_lib_mcast_deliver increase Shawn Bohrer
2012-04-26 15:53 ` Eric Dumazet
2012-04-26 16:18 ` Eric Dumazet
2012-04-26 16:21 ` Eric Dumazet
2012-04-26 16:28 ` Shawn Bohrer [this message]
2012-04-26 16:31 ` Eric Dumazet
2012-04-26 21:44 ` Shawn Bohrer
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=20120426162819.GD2479@BohrerMBP.rgmadvisors.com \
--to=sbohrer@rgmadvisors.com \
--cc=eric.dumazet@gmail.com \
--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