diff options
Diffstat (limited to 'src/plugins/avf/avf_api.c')
-rw-r--r-- | src/plugins/avf/avf_api.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/avf/avf_api.c b/src/plugins/avf/avf_api.c index 3503177837f..e9c7f49e2e5 100644 --- a/src/plugins/avf/avf_api.c +++ b/src/plugins/avf/avf_api.c @@ -94,7 +94,9 @@ vl_api_avf_delete_t_handler (vl_api_avf_delete_t * mp) vnet_hw_interface_t *hw; int rv = 0; - hw = vnet_get_sup_hw_interface (vnm, htonl (mp->sw_if_index)); + hw = + vnet_get_sup_hw_interface_api_visible_or_null (vnm, + htonl (mp->sw_if_index)); if (hw == NULL || avf_device_class.index != hw->dev_class_index) { rv = VNET_API_ERROR_INVALID_INTERFACE; |