From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrien Mazarguil Subject: [PATCH v3 06/14] mbuf: fix missing includes in exported header Date: Wed, 26 Apr 2017 14:07:14 +0200 Message-ID: References: Cc: stable@dpdk.org To: dev@dpdk.org Return-path: Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id 462CF5905 for ; Wed, 26 Apr 2017 14:07:41 +0200 (CEST) Received: by mail-wm0-f41.google.com with SMTP id m123so2022209wma.0 for ; Wed, 26 Apr 2017 05:07:41 -0700 (PDT) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This commit addresses the following errors: In file included from /tmp/check-includes.sh.681.c:1:0: build/include/rte_mbuf_ptype.h:587:35: error: unknown type name 'uint32_t' [...] build/include/rte_mbuf_ptype.h:662:51: error: unknown type name 'size_t' [...] Fixes: 288541c8ff9e ("mbuf: add functions to dump packet type") Cc: stable@dpdk.org Signed-off-by: Adrien Mazarguil Acked-by: Olivier Matz --- lib/librte_mbuf/rte_mbuf_ptype.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/librte_mbuf/rte_mbuf_ptype.h b/lib/librte_mbuf/rte_mbuf_ptype.h index ff6de9d..a3269c4 100644 --- a/lib/librte_mbuf/rte_mbuf_ptype.h +++ b/lib/librte_mbuf/rte_mbuf_ptype.h @@ -91,6 +91,9 @@ * RTE_PTYPE_INNER_L4_UDP. */ +#include +#include + #ifdef __cplusplus extern "C" { #endif -- 2.1.4