virtio-net: correctly drop truncated packets
authorJason Wang <jasowang@redhat.com>
Fri, 25 Sep 2015 05:21:30 +0000 (13:21 +0800)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Wed, 21 Oct 2015 18:40:28 +0000 (13:40 -0500)
commit696317f1895e836d53b670c7b77b7be93302ba08
tree42e066c211595e8e78f40f720cac33ab6219651b
parentc2a550d3dfa1f22eac77842aceed6047f6db2320
virtio-net: correctly drop truncated packets

When packet is truncated during receiving, we drop the packets but
neither discard the descriptor nor add and signal used
descriptor. This will lead several issues:

- sg mappings are leaked
- rx will be stalled if a lots of packets were truncated

In order to be consistent with vhost, fix by discarding the descriptor
in this case.

Cc: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
(cherry picked from commit 0cf33fb6b49a19de32859e2cdc6021334f448fb3)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
hw/net/virtio-net.c