From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id 07DA85A98 for ; Tue, 25 Apr 2017 10:30:25 +0200 (CEST) Received: by mail-wm0-f53.google.com with SMTP id i137so9830581wmf.0 for ; Tue, 25 Apr 2017 01:30:25 -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=OLEsn2/uIa3m0iikJVGktKRBC7FvtCTWndEImlUeklFhxzsk1epuB1KF2jKDUc6NfL 03f4XYbmmAUyZGrO8fKz2D5yjFsiCFfOlY6pa8rUVVUA4q17Wz4y+kIn+gYMZIupjQ5r 8vodgMaWMokgkWtkc4lOxLkHNUZGzuUza5XM5X2mpOkYZcJEGq4pOIyDl+rrSNKr32GK rb0VmXj4lkt1GxXRTDpQ3WhrSkQsQmqEOU2R5dPEP2xru94a2Ddc9euDhzIxf9oaEmpq 7slLs6UaiRlz9PNKnWtUdAtSO8TrSjfZn5Gvj4siIDr6RwqC8dOgDd81nRreSAAkPD3O N4Vg== X-Gm-Message-State: AN3rC/6pZyfTri1b7Rc+i8mL49AIU6cUYIAOjJaqFts+p2+owxYDUmyn Gp4kZmtSAT+DA+um4w4= 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-stable] [PATCH v2 06/13] mbuf: fix missing includes in exported header X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches 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