From 346c2c954e85c1769f09afd1cf75182d1f705c3e Mon Sep 17 00:00:00 2001 From: Noa Ezra Date: Thu, 20 Jun 2019 05:44:41 +0000 Subject: [PATCH] vhost: fix missing include Add a missing include with the defines for vhost-user driver features. Fixes: 5fbb3941da9f ("vhost: introduce driver features related APIs") Cc: stable@dpdk.org Signed-off-by: Noa Ezra Reviewed-by: Maxime Coquelin Reviewed-by: Matan Azrad --- lib/librte_vhost/rte_vhost.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_vhost/rte_vhost.h b/lib/librte_vhost/rte_vhost.h index 0226b3eff0..338e47cea1 100644 --- a/lib/librte_vhost/rte_vhost.h +++ b/lib/librte_vhost/rte_vhost.h @@ -23,6 +23,7 @@ extern "C" { /* These are not C++-aware. */ #include #include +#include #define RTE_VHOST_USER_CLIENT (1ULL << 0) #define RTE_VHOST_USER_NO_RECONNECT (1ULL << 1) -- 2.20.1