From mboxrd@z Thu Jan 1 00:00:00 1970 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=THL0OQqr98ost/P8SIMWoUJG2Cy6GZodjySWG5cguqk=; b=kJg/rdBMssBpYUJ5fKrD3NVuK/KmWCoqCucM5kZaGwuZNcISLskkRVNCO8wz7+v5Vd 9c6feAAZ7QaBM/fPumht+dk+FGawNUx3caUB2zvX48Nb+xOTzqCrko8JcdGIJhMY8qtP ApF42BIbIc0r8H2qIvTtvZtT6dRPnfYtz0StbTbKSq7whYxorWiLPlB0hPwlvIZ8pG8+ cqSL4Qq0vIgX421oV4KjJK7B7kbYKs0AEakmrr0x6PBINTuAHTy2ZUoCZX7K6kXAvWwH kKyHsptDQ7Cz7RbAgjY5HcdzM2T0AjKemsvBx/M9/a/vYiH8uHcajsh0Iw3nQl7xDdn/ filA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=THL0OQqr98ost/P8SIMWoUJG2Cy6GZodjySWG5cguqk=; b=oPASHLAEt9LUZDPHQC2WGhp+c5hr/abh7kmNk9TdOWkuOHIIevbkBeIES+3nde35Fl riDMMPQP0nSPBxeUI8GNseQBzus+Eyw/KCKrHIMPKV/6gTF6oKUbyHwWNKxiwDxF/0Lc HuzrOwjTw+P8W6WnKBe0jhEssnd3RF7zo1SF9A7MDnBixYkuEnkvCuP/tcoZ9rJTNwHv ZaSQYWbbT35HnV6LZztBACxp94j6fMXZ/PpWNfnZHjPOb+yLP8KuqKspAGVfsto3lkpl 4BYitx8cWHN0sFL+lPiWzPwM9rUNyYQmsue5cecSvxFD3Mp4QaXri0cD86euFflqa4eZ 9I9w== X-Gm-Message-State: AN3rC/7+iA83WUaI+OuARE8NGTcnVtbYWeEyLj/r04NSu5dJg30oly9T wZ/87s022TCQsi/p X-Received: by 10.28.12.78 with SMTP id 75mr616668wmm.13.1493208460994; Wed, 26 Apr 2017 05:07:40 -0700 (PDT) Received: from 6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id n193sm6193873wmg.30.2017.04.26.05.07.40 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Wed, 26 Apr 2017 05:07:40 -0700 (PDT) From: Adrien Mazarguil To: dev@dpdk.org Cc: stable@dpdk.org Date: Wed, 26 Apr 2017 14:07:14 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 In-Reply-To: References: Subject: [dpdk-dev] [PATCH v3 06/14] mbuf: fix missing includes in exported header X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Apr 2017 12:07:41 -0000 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