]> git.baikalelectronics.ru Git - kernel.git/commit
xen-netfront: pull on receive skb may need to happen earlier
authorJan Beulich <JBeulich@suse.com>
Wed, 17 Jul 2013 07:09:37 +0000 (08:09 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 17 Jul 2013 19:51:19 +0000 (12:51 -0700)
commitc86a19cd95573e0ab7a15a9fe4eb91e8e7b4a93f
tree1b86271f7c593a49e8dbe96da3f310d2aec9661e
parent1b112b73668d0ef014d37c92d3efbfe9d53bc689
xen-netfront: pull on receive skb may need to happen earlier

Due to commit 7ff51091 ("xen-netfront: use __pskb_pull_tail to ensure
linear area is big enough on RX") xennet_fill_frags() may end up
filling MAX_SKB_FRAGS + 1 fragments in a receive skb, and only reduce
the fragment count subsequently via __pskb_pull_tail(). That's a
result of xennet_get_responses() allowing a maximum of one more slot to
be consumed (and intermediately transformed into a fragment) if the
head slot has a size less than or equal to RX_COPY_THRESHOLD.

Hence we need to adjust xennet_fill_frags() to pull earlier if we
reached the maximum fragment count - due to the described behavior of
xennet_get_responses() this guarantees that at least the first fragment
will get completely consumed, and hence the fragment count reduced.

In order to not needlessly call __pskb_pull_tail() twice, make the
original call conditional upon the pull target not having been reached
yet, and defer the newly added one as much as possible (an alternative
would have been to always call the function right before the call to
xennet_fill_frags(), but that would imply more frequent cases of
needing to call it twice).

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: stable@vger.kernel.org (3.6 onwards)
Acked-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/xen-netfront.c