From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrien Mazarguil Subject: [PATCH v2 06/13] mbuf: fix missing includes in exported header Date: Tue, 25 Apr 2017 10:30:00 +0200 Message-ID: <364bfe6e5d21104a36ea619622afbdc737c14df2.1493108423.git.adrien.mazarguil@6wind.com> References: Cc: stable@dpdk.org, Olivier Matz To: dev@dpdk.org Return-path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id 0C2C2688B for ; Tue, 25 Apr 2017 10:30:26 +0200 (CEST) Received: by mail-wm0-f52.google.com with SMTP id u65so16059582wmu.1 for ; Tue, 25 Apr 2017 01:30:26 -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 Cc: Olivier Matz Signed-off-by: Adrien Mazarguil --- 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