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 29042559A for ; Tue, 25 Apr 2017 10:30:22 +0200 (CEST) Received: by mail-wm0-f52.google.com with SMTP id u65so16058216wmu.1 for ; Tue, 25 Apr 2017 01:30:22 -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=UoOYWWWKI9XK7s30Zo0XrmJ0eUwkKNrA5V5v179UPsIbrKcuabAujQban8OqAzNmVf r3ZQgYjiO6MbgjuNC7REvTy/PNc3rrIVdsWs6mbuDE1Udxau2k4df7AGUR6nS+CvNo20 5DPA1rm9w1GXwNVrZo711jL4RqeT0GS4aKqXAfsolRJxZ/G6eQ0gZ+Kv7py3xvgrQbbM /IzbHcRMjFCIHPGGlCHpsyEAPTn0x/+rh7JMIqFzsfAJMXqkH1SgsZ2eKqeBTa/qc9cd ozhtyTtGnYpSXj6IEcBx4W7Kogu6K+j60JGsXAYD6qWc+u8yBzte5cOR+8ZTElnnwMD9 gCKw== 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=aDp+l3fLB3pPlC+sVHlYPJ6BQOk2MvsF7mxA9W/2kXnJmaukFfOYY5yxYQO1fecXDP E/rXIn7uzDsx036pjKjoJ98Wjf07ttdirNxvaDWeIbl8jBJtQWMXTgcU4QJOo8ZB68g0 rUBUA6/mHwyxxrigRSaYbarVwKMCoFnPdlngycKyj5tL1C4popCUOb9VxkJ3dxdVLw5J Fp5cSeropg0Rp1dZ74/aRPmB0jDdmmw8u1GBNXkj2IAX4+xMo01CWL8mxBVgXpw55SGH GB1yWb70G/SsSaEF0Xe9UihtJbH6Lk8KGc6fV/o/x5Kfzwk8ETCZz+fpCJB+xVo//JSt IT6w== X-Gm-Message-State: AN3rC/6PIA4wmi4oR1lH4nCTQoixuQhu/d23DeOBovG5LelBtZEIQ2Yq d7xPCtBi/ak0YukfRiI= X-Received: by 10.28.55.9 with SMTP id e9mr11843186wma.44.1493109021698; Tue, 25 Apr 2017 01:30: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 l201sm3066173wmb.3.2017.04.25.01.30.20 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Tue, 25 Apr 2017 01:30:20 -0700 (PDT) From: Adrien Mazarguil To: dev@dpdk.org Cc: Reshma Pattan Date: Tue, 25 Apr 2017 10:29:57 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 In-Reply-To: References: Subject: [dpdk-dev] [PATCH v2 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: Tue, 25 Apr 2017 08:30: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