]> Git Repo - linux.git/commitdiff
net: add cpu_relax to busy poll loop
authorEliezer Tamir <[email protected]>
Sun, 25 Aug 2013 07:23:46 +0000 (10:23 +0300)
committerDavid S. Miller <[email protected]>
Wed, 28 Aug 2013 21:45:48 +0000 (17:45 -0400)
Add a cpu_relaxt to sk_busy_loop.

Julie Cummings reported performance issues when hyperthreading is on.
Arjan van de Ven observed that we should have a cpu_relax() in the
busy poll loop.

Reported-by: Julie Cummings <[email protected]>
Signed-off-by: Eliezer Tamir <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
include/net/busy_poll.h

index 8a358a2c97e6a82cb98dd6b9586133828306f961..829627d7b8460e1739da979a3937056dde92a48e 100644 (file)
@@ -123,6 +123,7 @@ static inline bool sk_busy_loop(struct sock *sk, int nonblock)
                        /* local bh are disabled so it is ok to use _BH */
                        NET_ADD_STATS_BH(sock_net(sk),
                                         LINUX_MIB_BUSYPOLLRXPACKETS, rc);
+               cpu_relax();
 
        } while (!nonblock && skb_queue_empty(&sk->sk_receive_queue) &&
                 !need_resched() && !busy_loop_timeout(end_time));
This page took 0.055107 seconds and 4 git commands to generate.