Commit 95f6b3dd authored by David S. Miller's avatar David S. Miller

net: Have xmit_list() signal more==true when appropriate.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fa2dbdc2
...@@ -2600,7 +2600,7 @@ netdev_features_t netif_skb_features(struct sk_buff *skb) ...@@ -2600,7 +2600,7 @@ netdev_features_t netif_skb_features(struct sk_buff *skb)
EXPORT_SYMBOL(netif_skb_features); EXPORT_SYMBOL(netif_skb_features);
static int xmit_one(struct sk_buff *skb, struct net_device *dev, static int xmit_one(struct sk_buff *skb, struct net_device *dev,
struct netdev_queue *txq) struct netdev_queue *txq, bool more)
{ {
unsigned int len; unsigned int len;
int rc; int rc;
...@@ -2610,7 +2610,7 @@ static int xmit_one(struct sk_buff *skb, struct net_device *dev, ...@@ -2610,7 +2610,7 @@ static int xmit_one(struct sk_buff *skb, struct net_device *dev,
len = skb->len; len = skb->len;
trace_net_dev_start_xmit(skb, dev); trace_net_dev_start_xmit(skb, dev);
rc = netdev_start_xmit(skb, dev, txq, false); rc = netdev_start_xmit(skb, dev, txq, more);
trace_net_dev_xmit(skb, rc, dev, len); trace_net_dev_xmit(skb, rc, dev, len);
return rc; return rc;
...@@ -2626,7 +2626,7 @@ static struct sk_buff *xmit_list(struct sk_buff *first, struct net_device *dev, ...@@ -2626,7 +2626,7 @@ static struct sk_buff *xmit_list(struct sk_buff *first, struct net_device *dev,
struct sk_buff *next = skb->next; struct sk_buff *next = skb->next;
skb->next = NULL; skb->next = NULL;
rc = xmit_one(skb, dev, txq); rc = xmit_one(skb, dev, txq, next != NULL);
if (unlikely(!dev_xmit_complete(rc))) { if (unlikely(!dev_xmit_complete(rc))) {
skb->next = next; skb->next = next;
goto out; goto out;
...@@ -2705,7 +2705,7 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev, ...@@ -2705,7 +2705,7 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
} }
} }
return xmit_one(skb, dev, txq); return xmit_one(skb, dev, txq, false);
} }
gso: gso:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment