From 071b9b78c441ee6f87775651fb2080061704d901 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Fri, 15 Jan 2021 11:10:41 +0000 Subject: [PATCH] ipsec: fix missing header include The rte_ipsec_sad.h header used the standard uintXX_t types, but did not include stdint.h header for them. Fixes: 401633d9c112 ("ipsec: add inbound SAD API") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Acked-by: Konstantin Ananyev Acked-by: Vladimir Medvedkin Reviewed-by: David Marchand --- lib/librte_ipsec/rte_ipsec_sad.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_ipsec/rte_ipsec_sad.h b/lib/librte_ipsec/rte_ipsec_sad.h index 3e67ab1e4b..b65d295831 100644 --- a/lib/librte_ipsec/rte_ipsec_sad.h +++ b/lib/librte_ipsec/rte_ipsec_sad.h @@ -6,6 +6,8 @@ #ifndef _RTE_IPSEC_SAD_H_ #define _RTE_IPSEC_SAD_H_ +#include + #include /** -- 2.20.1