From mboxrd@z Thu Jan 1 00:00:00 1970 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) 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=mhUyDvoDf0LGaI5WthQ/WpU0gauohw7UxruXuoFBXGE=; b=jAMj9O5j1fUY+bFVs7knFkMD7cT66xthHd5NwiV1UoZgHm9gATx6ZLYbry/woHgwM9 7cZw+rpb5bW8xvfANvH4wGNZC9WdeQZMu/n+xFrXRf+siniKAqCshANS/STo3JZmdPkh VrX+fvoTKxDMCtr/iFbilVI43HKEo+qOdy169U/in+W+tRoQFjjKj+i2gUBs4Gr+th/h Ff6BNKNoLnJxsrDbpGvsxwNWYhudWKLhAtXsJRut40Hcv/cxJYzpzxfncldPi2g8HL3U mRaEAWBxBKcEU5s/hTtjGbIkj9qHwuMY1PIb67Lx+5LTc5X1t674iUOj0OQys4KlAyF3 rIEw== 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=mhUyDvoDf0LGaI5WthQ/WpU0gauohw7UxruXuoFBXGE=; b=iUc8hDTU3UWgmb49m1Jf6N5tLA1v2911QTTZCGrJnb04dssZiqsYgEXnsE3W3GTQdo zu45BYSvNexGo5mIBmLTnUihHwu+J80tzBoZon7x1WK/m+2hlM+MJvlTkpM/KE27ciao +eSSedghsE/iIFClpyy/LKegbkbWwpHjUHbWnVVCm9cAVSwXY3DP/knC+7m+ZMhYu5+y wuSe6Lkxmb8/ftd6JhhzLdOZa0MriWuAJKA4TMienuMPA42ssXp7o5VUZNnz4beiW8AT i6IOUOVHX43TMbeVX0563yA8vQRoloSDZnQfy+dU2xCOZpgKOJJlrlvh6GCo5nigpC/q Oggw== X-Gm-Message-State: AN3rC/4gu0TWtcDlUj4t3gaDh2gTfM3DB10fZpR+Zd0t76By8iO7Ij2R vywQmgm70Obflmqc X-Received: by 10.28.206.195 with SMTP id e186mr11216529wmg.37.1493109025759; Tue, 25 Apr 2017 01:30:25 -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 n49sm309153wrn.30.2017.04.25.01.30.24 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Tue, 25 Apr 2017 01:30:24 -0700 (PDT) From: Adrien Mazarguil To: dev@dpdk.org Cc: stable@dpdk.org, Olivier Matz Date: Tue, 25 Apr 2017 10:30:00 +0200 Message-Id: <364bfe6e5d21104a36ea619622afbdc737c14df2.1493108423.git.adrien.mazarguil@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: References: Subject: [dpdk-dev] [PATCH v2 06/13] 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: Tue, 25 Apr 2017 08:30:26 -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 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