X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fdevices%2Fvirtio%2Fvirtio_api.c;h=b2ac471e9e92e13b75940b3ec28397ae9e12423a;hb=e63325e3c;hp=6f70b09003451a9506e2df0fe99bcd3c64ab4f5a;hpb=d6c15af33f3f153e084f14484e884f3ca68dbc23;p=vpp.git diff --git a/src/vnet/devices/virtio/virtio_api.c b/src/vnet/devices/virtio/virtio_api.c index 6f70b090034..b2ac471e9e9 100644 --- a/src/vnet/devices/virtio/virtio_api.c +++ b/src/vnet/devices/virtio/virtio_api.c @@ -97,8 +97,7 @@ virtio_pci_send_sw_interface_event_deleted (vpe_api_main_t * am, mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_EVENT); mp->sw_if_index = htonl (sw_if_index); - mp->admin_up_down = 0; - mp->link_up_down = 0; + mp->flags = 0; mp->deleted = 1; vl_api_send_msg (reg, (u8 *) mp); } @@ -108,7 +107,7 @@ vl_api_virtio_pci_delete_t_handler (vl_api_virtio_pci_delete_t * mp) { vnet_main_t *vnm = vnet_get_main (); vlib_main_t *vm = vlib_get_main (); - virtio_main_t *vmx = &virtio_main; + virtio_main_t *vim = &virtio_main; int rv = 0; vnet_hw_interface_t *hw; virtio_if_t *vif; @@ -124,7 +123,7 @@ vl_api_virtio_pci_delete_t_handler (vl_api_virtio_pci_delete_t * mp) goto reply; } - vif = pool_elt_at_index (vmx->interfaces, hw->dev_instance); + vif = pool_elt_at_index (vim->interfaces, hw->dev_instance); rv = virtio_pci_delete_if (vm, vif);