summaryrefslogtreecommitdiffstats
path: root/drivers/net/xen-netfront.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2018-12-20 13:53:28 -0500
committerDavid S. Miller <davem@davemloft.net>2018-12-20 14:53:36 -0500
commit2be09de7d6a06f58e768de1255a687c9aaa66606 (patch)
tree298f9e04caf105873d987e807eccba27710a49cc /drivers/net/xen-netfront.c
parent44a7b3b6e3a458f9549c2cc28e74ecdc470e42f1 (diff)
parent1d51b4b1d3f2db0d6d144175e31a84e472fbd99a (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Lots of conflicts, by happily all cases of overlapping changes, parallel adds, things of that nature. Thanks to Stephen Rothwell, Saeed Mahameed, and others for their guidance in these resolutions. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/xen-netfront.c')
-rw-r--r--drivers/net/xen-netfront.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index a8303afa15f1..c914c24f880b 100644
--- a/drivers/net/xen-netfront.c
+++ b/drivers/net/xen-netfront.c
@@ -903,7 +903,7 @@ static RING_IDX xennet_fill_frags(struct netfront_queue *queue,
903 if (skb_shinfo(skb)->nr_frags == MAX_SKB_FRAGS) { 903 if (skb_shinfo(skb)->nr_frags == MAX_SKB_FRAGS) {
904 unsigned int pull_to = NETFRONT_SKB_CB(skb)->pull_to; 904 unsigned int pull_to = NETFRONT_SKB_CB(skb)->pull_to;
905 905
906 BUG_ON(pull_to <= skb_headlen(skb)); 906 BUG_ON(pull_to < skb_headlen(skb));
907 __pskb_pull_tail(skb, pull_to - skb_headlen(skb)); 907 __pskb_pull_tail(skb, pull_to - skb_headlen(skb));
908 } 908 }
909 if (unlikely(skb_shinfo(skb)->nr_frags >= MAX_SKB_FRAGS)) { 909 if (unlikely(skb_shinfo(skb)->nr_frags >= MAX_SKB_FRAGS)) {