From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f174.google.com (mail-wr0-f174.google.com [209.85.128.174]) by dpdk.org (Postfix) with ESMTP id 2749258FA for ; Mon, 24 Apr 2017 17:53:21 +0200 (CEST) Received: by mail-wr0-f174.google.com with SMTP id w50so70980665wrc.0 for ; Mon, 24 Apr 2017 08:53:21 -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=BXONJIqWamn+x+aak9Xdhhk7hkaJeywVnYX8VrWBDzI=; b=xv3YHnDZWjF2x+6SEp3NYTS1RTauG1bs0tjNezU0zdhWsRjbJPJQ1dvil6TOfJx0+L VKiq6WCiNZ1jVDDYizngyLBAawdw4V8ezqR8UTAygy8LwKuaulBQKlHu538IO5FXXJ/d H51YyXoe4P90vAIk4S9NdoQafCoRPF4MV2YL/xKqrvJuTMKI1I2HAxLvzL3hah+enm6j r4tkj88dNgPYGPsFpoG2x3QV4XqGQZ9ezBVuWTinO+3QsSvesg77f46gqHCDg1D1ltxH eoscEwPSokzK+n4X/cs0ax3Sua7f7N9Sl2mR+YBx6YqT1phpqIA9euZ6NznhWveUmr/h obgQ== 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=BXONJIqWamn+x+aak9Xdhhk7hkaJeywVnYX8VrWBDzI=; b=fXm5lnuK8GsBYxURycTWMYO3XcpHqint/GtQxZU7ttPO6r/6jntdq5p8i2dF5tdEsS UM/45KLYGuUmtiEmEoyb0xnBUFJdtcfpeWeYSbBsm3vYsyAv08MIsoQNEpeZXSKqj1V5 4JCZy7jgWqiiBCBNPmSp93nUme62Z1eCFUItiNoInf7fxoF/KSnv0R+caa2E9lB5ULfu Evujf7LwppxvDPSZKCZyx58phxL0H+E7prD80aKh1Q58W79oBQ6ZHbXkzbVBq0bVxUcB OlM1/2ZWPPeQC9eWuKnMaSPfNA5ovnZOuN7aVlH7eLvl58+fyu+Lwuojx6zPdNLvCnty mrBQ== X-Gm-Message-State: AN3rC/7WPGoWJvF2dqkBEo3SNyibSBigkJhPizL1taZWeHkuxCHuO5JY zORnnJ6cq4lyHslr X-Received: by 10.223.134.219 with SMTP id 27mr6365521wry.33.1493049201787; Mon, 24 Apr 2017 08:53:21 -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 b188sm698990wmh.6.2017.04.24.08.53.20 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Mon, 24 Apr 2017 08:53:21 -0700 (PDT) From: Adrien Mazarguil To: dev@dpdk.org Cc: Reshma Pattan Date: Mon, 24 Apr 2017 17:52:57 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 In-Reply-To: References: Subject: [dpdk-dev] [PATCH 03/13] latency: 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: Mon, 24 Apr 2017 15:53:22 -0000 This commit addresses the following errors: In file included from build/include/rte_latencystats.h:43:0, from /tmp/check-includes.sh.6580.c:1: build/include/rte_metrics.h:91:2: error: unknown type name 'uint16_t' [...] In file included from /tmp/check-includes.sh.6580.c:1:0: build/include/rte_latencystats.h:66:19: error: expected declaration specifiers or '...' before '*' token [...] Fixes: 5cd3cac9ed22 ("latency: added new library for latency stats") Cc: Reshma Pattan Signed-off-by: Adrien Mazarguil --- lib/librte_latencystats/rte_latencystats.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_latencystats/rte_latencystats.h b/lib/librte_latencystats/rte_latencystats.h index 6efeaf4..d85cf3a 100644 --- a/lib/librte_latencystats/rte_latencystats.h +++ b/lib/librte_latencystats/rte_latencystats.h @@ -40,7 +40,9 @@ * library to provide application and flow based latency stats. */ +#include #include +#include #ifdef __cplusplus extern "C" { -- 2.1.4