[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080616.215632.119969915.davem@davemloft.net>
Date: Mon, 16 Jun 2008 21:56:32 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: ghaskins@...ell.com
Cc: PMullaney@...ell.com, herbert@...dor.apana.org.au,
chuck.lever@...cle.com, netdev@...r.kernel.org
Subject: Re: Killing sk->sk_callback_lock
From: "Gregory Haskins" <ghaskins@...ell.com>
Date: Mon, 16 Jun 2008 22:01:13 -0600
> This seemed odd to us, so we investigated further to see if an
> improvement was lurking or whether this was expected. We traced
> back the source of each wakeup to be coming from 1) the wmem/nospace
> code, and 2) from the rx-wakeup code from the softirq. First the
> softirq would process the tx-completions which would wake_up() the
> wait-queue for NOSPACE signaling. Since the client was waiting for
> a packet on the same wait-queue, this was where the first wakeup
> came from. Then later the softirq finally pushed an actual packet
> to the queue, and the client was once again re-awoken via the same
> overloaded wait-queue. This time it would successfully find a
> packet and return to userspace.
>
> Since the client does not care about wmem/nospace in the UDP rx
> path, yet the two events share a single wait-queue, the first wakeup
> was completely wasted. It just causes extra scheduling activity
> that does not help in any way (and is quite expensive in the
> grand-scheme of things). Based on this lead, Pat devised a solution
> which eliminates the extra wake-up() when there are no clients
> waiting for that particular NOSPACE event. With his patch applied,
> we observed two things:
Why is the application checking for receive packets even on the
write-space wakeup?
poll/select/epoll should be giving the correct event indication,
therefore the application would know to not check for receive
packets when a write-wakeup event occurs.
Yes the wakeup is spurious and we should avoid it. But this
application is also buggy.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists