net/bnxt: fix null dereference in session cleanup
[dpdk.git] / lib / vhost / vdpa.c
index 6dd9185..8fa2153 100644 (file)
@@ -8,7 +8,6 @@
  * Device specific vhost lib
  */
 
-#include <stdbool.h>
 #include <sys/queue.h>
 
 #include <rte_class.h>
@@ -17,7 +16,7 @@
 #include <rte_tailq.h>
 
 #include "rte_vdpa.h"
-#include "rte_vdpa_dev.h"
+#include "vdpa_driver.h"
 #include "vhost.h"
 
 /** Double linked list of vDPA devices. */
@@ -82,8 +81,8 @@ rte_vdpa_register_device(struct rte_device *rte_dev,
                        !ops->get_protocol_features || !ops->dev_conf ||
                        !ops->dev_close || !ops->set_vring_state ||
                        !ops->set_features) {
-               VHOST_LOG_CONFIG(ERR,
-                               "Some mandatory vDPA ops aren't implemented\n");
+               VHOST_LOG_CONFIG(ERR, "(%s) Some mandatory vDPA ops aren't implemented\n",
+                               rte_dev->name);
                return NULL;
        }