Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2a49e001 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

netpoll: Remove wrapper function netpoll_poll



Too trivial to live.

cc: WANG Cong <amwang@redhat.com>
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 234b921d
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -209,11 +209,6 @@ static void netpoll_poll_dev(struct net_device *dev)
	zap_completion_queue();
}

static void netpoll_poll(struct netpoll *np)
{
	netpoll_poll_dev(np->dev);
}

static void refill_skbs(void)
{
	struct sk_buff *skb;
@@ -273,7 +268,7 @@ repeat:

	if (!skb) {
		if (++count < 10) {
			netpoll_poll(np);
			netpoll_poll_dev(np->dev);
			goto repeat;
		}
		return NULL;
@@ -334,7 +329,7 @@ void netpoll_send_skb_on_dev(struct netpoll *np, struct sk_buff *skb,
			}

			/* tickle device maybe there is some cleanup */
			netpoll_poll(np);
			netpoll_poll_dev(np->dev);

			udelay(USEC_PER_POLL);
		}