From eed6a2b22f85aea2e3104cca2b78e325b9c9f8e5 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Fri, 16 Feb 2018 16:13:32 +0100 Subject: virtio: add missing tx lock when running multithreaded Change-Id: I373f429c53c6f66ad38322addcfaccddb7761392 Signed-off-by: Damjan Marion --- src/vnet/devices/tap/tap.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/vnet/devices/tap/tap.c') diff --git a/src/vnet/devices/tap/tap.c b/src/vnet/devices/tap/tap.c index a7d10fe5473..7177de7be06 100644 --- a/src/vnet/devices/tap/tap.c +++ b/src/vnet/devices/tap/tap.c @@ -80,6 +80,7 @@ void tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args) { vnet_main_t *vnm = vnet_get_main (); + vlib_thread_main_t *thm = vlib_get_thread_main (); virtio_main_t *vim = &virtio_main; tap_main_t *tm = &tap_main; vnet_sw_interface_t *sw; @@ -377,6 +378,8 @@ tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args) vif->flags |= VIRTIO_IF_FLAG_ADMIN_UP; vnet_hw_interface_set_flags (vnm, vif->hw_if_index, VNET_HW_INTERFACE_FLAG_LINK_UP); + if (thm->n_vlib_mains > 1) + clib_spinlock_init (&vif->lockp); goto done; error: @@ -433,6 +436,7 @@ tap_delete_if (vlib_main_t * vm, u32 sw_if_index) vec_free (vif->vrings); hash_unset (tm->dev_instance_by_interface_id, vif->id); + clib_spinlock_free (&vif->lockp); memset (vif, 0, sizeof (*vif)); pool_put (mm->interfaces, vif); -- cgit 1.2.3-korg