Skip to content

Commit

Permalink
[NETPOLL]: netpoll_poll() cleanup
Browse files Browse the repository at this point in the history
Restructure code slightly to improve readability:
  * dereference device once
  * change obvious while() loop
  * let poll_napi() handle null list itself

Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Stephen Hemminger authored and David S. Miller committed Jan 28, 2008
1 parent 0adc9ad commit 5106930
Showing 1 changed file with 14 additions and 18 deletions.
32 changes: 14 additions & 18 deletions net/core/netpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,15 @@ static int poll_one_napi(struct netpoll_info *npinfo,
return budget - work;
}

static void poll_napi(struct netpoll *np)
static void poll_napi(struct net_device *dev)
{
struct netpoll_info *npinfo = np->dev->npinfo;
struct napi_struct *napi;
int budget = 16;

list_for_each_entry(napi, &np->dev->napi_list, dev_list) {
list_for_each_entry(napi, &dev->napi_list, dev_list) {
if (napi->poll_owner != smp_processor_id() &&
spin_trylock(&napi->poll_lock)) {
budget = poll_one_napi(npinfo, napi, budget);
budget = poll_one_napi(dev->npinfo, napi, budget);
spin_unlock(&napi->poll_lock);

if (!budget)
Expand All @@ -159,30 +158,27 @@ static void poll_napi(struct netpoll *np)

static void service_arp_queue(struct netpoll_info *npi)
{
struct sk_buff *skb;

if (unlikely(!npi))
return;
if (npi) {
struct sk_buff *skb;

skb = skb_dequeue(&npi->arp_tx);

while (skb != NULL) {
arp_reply(skb);
skb = skb_dequeue(&npi->arp_tx);
while ((skb = skb_dequeue(&npi->arp_tx)))
arp_reply(skb);
}
}

void netpoll_poll(struct netpoll *np)
{
if (!np->dev || !netif_running(np->dev) || !np->dev->poll_controller)
struct net_device *dev = np->dev;

if (!dev || !netif_running(dev) || !dev->poll_controller)
return;

/* Process pending work on NIC */
np->dev->poll_controller(np->dev);
if (!list_empty(&np->dev->napi_list))
poll_napi(np);
dev->poll_controller(dev);

poll_napi(dev);

service_arp_queue(np->dev->npinfo);
service_arp_queue(dev->npinfo);

zap_completion_queue();
}
Expand Down

0 comments on commit 5106930

Please sign in to comment.