From: Neale Ranns Date: Fri, 18 Aug 2017 09:34:28 +0000 (-0700) Subject: Use correct msg ID in the sw-interface-event from TAP and VHOST X-Git-Tag: v17.10-rc1~208 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=0714541603ef9dd80d724c38984e723d111e2886;p=vpp.git Use correct msg ID in the sw-interface-event from TAP and VHOST Change-Id: I0124fa264f7f390fc7cd9722da59be03116831c5 Signed-off-by: Neale Ranns --- diff --git a/src/vnet/devices/virtio/vhost_user_api.c b/src/vnet/devices/virtio/vhost_user_api.c index 3f0aac9eebf..78599241d3e 100644 --- a/src/vnet/devices/virtio/vhost_user_api.c +++ b/src/vnet/devices/virtio/vhost_user_api.c @@ -60,7 +60,7 @@ send_sw_interface_event_deleted (vpe_api_main_t * am, mp = vl_msg_api_alloc (sizeof (*mp)); memset (mp, 0, sizeof (*mp)); - mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_SET_FLAGS); + mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT); mp->sw_if_index = ntohl (sw_if_index); mp->admin_up_down = 0; diff --git a/src/vnet/unix/tap_api.c b/src/vnet/unix/tap_api.c index 7e812c4fa17..3a64e1009cf 100644 --- a/src/vnet/unix/tap_api.c +++ b/src/vnet/unix/tap_api.c @@ -67,7 +67,7 @@ send_sw_interface_event_deleted (vpe_api_main_t * am, mp = vl_msg_api_alloc (sizeof (*mp)); memset (mp, 0, sizeof (*mp)); - mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_SET_FLAGS); + mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT); mp->sw_if_index = ntohl (sw_if_index); mp->admin_up_down = 0;