From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id DCAADA0543; Wed, 12 Oct 2022 14:02:10 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 922E042FC5; Wed, 12 Oct 2022 14:02:10 +0200 (CEST) Received: from smail.rz.tu-ilmenau.de (smail.rz.tu-ilmenau.de [141.24.186.67]) by mails.dpdk.org (Postfix) with ESMTP id 92D5942EF7 for ; Wed, 12 Oct 2022 14:02:09 +0200 (CEST) Received: from localhost.localdomain (dialin-ip-23-165.ilmenau.net [80.88.23.165]) by smail.rz.tu-ilmenau.de (Postfix) with ESMTPA id 05D28580098; Wed, 12 Oct 2022 14:02:08 +0200 (CEST) From: Markus Theil To: dev@dpdk.org Cc: Ferruh Yigit , Thomas Monjalon , Andrew Rybchenko , Michael Pfeiffer Subject: [PATCH] ethdev: add include for vtune Date: Wed, 12 Oct 2022 14:02:02 +0200 Message-Id: <20221012120202.11123-1-markus.theil@tu-ilmenau.de> X-Mailer: git-send-email 2.38.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Michael Pfeiffer Adding this include allowed us to use vtune with DPDK. Signed-off-by: Michael Pfeiffer --- lib/ethdev/ethdev_profile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ethdev/ethdev_profile.c b/lib/ethdev/ethdev_profile.c index 7978f351ac..90339cb2ee 100644 --- a/lib/ethdev/ethdev_profile.c +++ b/lib/ethdev/ethdev_profile.c @@ -3,6 +3,7 @@ */ #include "ethdev_profile.h" +#include "ethdev_driver.h" /** * This conditional block enables Ethernet device profiling with -- 2.38.0