diff options
author | Steven <sluong@cisco.com> | 2018-01-09 11:13:29 -0800 |
---|---|---|
committer | steven luong <sluong@cisco.com> | 2018-01-16 16:59:18 +0000 |
commit | a624dbe7711a5852110a2cc28da1f72f5817708b (patch) | |
tree | 04f727fa8ed3955d0b306b6136671c81efff5c26 /src/vnet/devices/virtio/virtio.h | |
parent | 887ffb65fd9ce99db9a2ae0a3a1fa5456ba9b67c (diff) |
tapv2: deleting tap interface may leak buffers (VPP-1124)
Buffers may be allocated for indirect descriptors by tx thread and
they are freed when tx thread is invoked in the next invocation.
This is to allow the recipient (kernel) to have a chance to process
them. But if the tap interface is deleted, the tx thread may not yet
be called to clean up the indirect descriptors' buffers. In that case,
we need to remove them without waiting for the tx thread to be called.
Failure to do so may cause buffers leak when the tap interface is deleted.
For the RX ring, leakage also exists for vring->buffers when the interface
is removed.
Change-Id: I3df313a0e60334776b19daf51a9f5bf20dfdc489
Signed-off-by: Steven <sluong@cisco.com>
(cherry picked from commit d8a998e74b815dd3725dfcd80080e4e540940236)
Diffstat (limited to 'src/vnet/devices/virtio/virtio.h')
-rw-r--r-- | src/vnet/devices/virtio/virtio.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vnet/devices/virtio/virtio.h b/src/vnet/devices/virtio/virtio.h index 079223d233e..90eeb536ab1 100644 --- a/src/vnet/devices/virtio/virtio.h +++ b/src/vnet/devices/virtio/virtio.h @@ -128,7 +128,9 @@ extern vlib_node_registration_t virtio_input_node; clib_error_t *virtio_vring_init (vlib_main_t * vm, virtio_if_t * vif, u16 idx, u16 sz); -clib_error_t *virtio_vring_free (virtio_if_t * vif, u32 idx); +clib_error_t *virtio_vring_free (vlib_main_t * vm, virtio_if_t * vif, + u32 idx); +extern void virtio_free_used_desc (vlib_main_t * vm, virtio_vring_t * vring); #endif /* _VNET_DEVICES_VIRTIO_VIRTIO_H_ */ |