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 CE66EA0093 for ; Thu, 12 May 2022 10:26:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C6A5A42827; Thu, 12 May 2022 10:26:50 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 4121D40E64; Thu, 12 May 2022 10:26:49 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id BA75B82; Thu, 12 May 2022 11:26:48 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru BA75B82 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1652344008; bh=vX0hmieEeNZvIiw77x1pDx4oU97N+5I6GgO6T9EJ0Ag=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=SPEeUwfCreWX4krlnJasE83QAlfxBQlJp+L0ZqoJYhrr9h/chkd0fOccoESQhLOqv 6WZGzyOmdsVVXYRAhbBVbSV3z/T6jRB1AA96QIrSsxS1wxRsbVMLMVEbRJ6f0nDzcd obF3i1duWyzFov0EBzHfdDIuKp0xGh7Cfqc0mWP0= Message-ID: <511dd8e5-2934-85e1-576c-3728774a9977@oktetlabs.ru> Date: Thu, 12 May 2022 11:26:48 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.0 Subject: Re: [PATCH] ethdev: fix compilation issue with vtune option Content-Language: en-US To: Aman Singh , dev@dpdk.org Cc: ilia.kurakin@intel.com, Thomas Monjalon , dpdk stable , Ferruh Yigit References: <20220505130138.501013-1-aman.deep.singh@intel.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: <20220505130138.501013-1-aman.deep.singh@intel.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org On 5/5/22 16:01, Aman Singh wrote: > When VTune profile option is enabled, compilation > error is seen. > > Bugzilla ID: 1004 > Fixes: 2c1bbab7f09d ("ethdev: change vtune profiling approach") > Cc: ilia.kurakin@intel.com > > Signed-off-by: Aman Singh > --- > lib/ethdev/ethdev_profile.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/lib/ethdev/ethdev_profile.h b/lib/ethdev/ethdev_profile.h > index e5ee4df824..881aec1273 100644 > --- a/lib/ethdev/ethdev_profile.h > +++ b/lib/ethdev/ethdev_profile.h > @@ -6,6 +6,7 @@ > #define _RTE_ETHDEV_PROFILE_H_ > > #include "rte_ethdev.h" > +#include "ethdev_driver.h" > > /** > * Initialization of the Ethernet device profiling. Fixes: f9bdee267ab8 ("ethdev: hide internal structures") Cc: stable@dpdk.org Reviewed-by: Andrew Rybchenko Applied, thanks.