[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <47BDDBB5.1050603@fr.ibm.com>
Date: Thu, 21 Feb 2008 21:14:45 +0100
From: Daniel Lezcano <dlezcano@...ibm.com>
To: Eric Dumazet <dada1@...mosbay.com>
CC: "David S. Miller" <davem@...emloft.net>, netdev@...r.kernel.org
Subject: Re: [RFC,PATCH] loopback: calls netif_receive_skb() instead of netif_rx()
Eric Dumazet wrote:
> Hi David
>
> This is an RFC, based on net-2.6 for convenience only.
>
> Thank you
>
> [RFC,PATCH] loopback: calls netif_receive_skb() instead of netif_rx()
>
> Loopback transmit function loopback_xmit() actually calls netif_rx() to
> queue
> a skb to the softnet queue, and arms a softirq so that this skb can be
> handled later.
>
> This has a cost on SMP, because we need to hold a reference on the
> device, and free this
> reference when softirq dequeues packet.
>
> Following patch directly calls netif_receive_skb() and avoids lot of
> atomic operations.
> (atomic_inc(&dev->refcnt), set_and_set_bit(NAPI_STATE_SCHED, &n->state),
> ...
> atomic_dec(&dev->refcnt)...), cache line ping-pongs on device refcnt,
> but also softirq overhead.
>
> This gives a nice boost on tbench for example (5 % on my machine)
I understand this is interesting for the loopback when there is no
multiple instances of it and it can't be unregistered. But now with the
network namespaces, we can have multiple instances of the loopback and
it can to be unregistered. Shouldn't we still use netif_rx ?
Perhaps we can do something like:
if (dev->nd_net == &init_net)
netif_receive_skb(skb);
else
netif_rx(skb);
Or we create:
init_loopback_xmit() calling netif_receive_skb(skb);
and setup this function when creating the loopback for init_net,
otherwise we setup the usual loopback_xmit.
We are still safe for multiple network namespaces and we have the
improvement for init_net loopback.
--
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