From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id BE091A10DA for ; Wed, 31 Jul 2019 09:04:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3F7811BFDC; Wed, 31 Jul 2019 09:04:39 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 623E91BF23; Wed, 31 Jul 2019 09:04:35 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 Jul 2019 00:04:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,329,1559545200"; d="scan'208";a="347439541" Received: from irsmsx151.ger.corp.intel.com ([163.33.192.59]) by orsmga005.jf.intel.com with ESMTP; 31 Jul 2019 00:04:33 -0700 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.164]) by IRSMSX151.ger.corp.intel.com ([169.254.4.41]) with mapi id 14.03.0439.000; Wed, 31 Jul 2019 08:04:32 +0100 From: "Ananyev, Konstantin" To: "Varghese, Vipin" , "dev@dpdk.org" CC: "stable@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH] examples/bpf: fix compilation issue Thread-Index: AQHVRsBMl0YRp+okoUyFPNallSvlK6bj/nqAgABPm0A= Date: Wed, 31 Jul 2019 07:04:31 +0000 Message-ID: <2601191342CEEE43887BDE71AB9772580168A5FD47@irsmsx105.ger.corp.intel.com> References: <20190730101927.1665-1-konstantin.ananyev@intel.com> <4C9E0AB70F954A408CC4ADDBF0F8FA7D4D399F1E@BGSMSX101.gar.corp.intel.com> In-Reply-To: <4C9E0AB70F954A408CC4ADDBF0F8FA7D4D399F1E@BGSMSX101.gar.corp.intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZWQzYmRkNzEtYWFiNi00YTZmLTk3OTItZGM3MjA5MjljMGRmIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiQzl4bXVQOXh1T29kQmc0VUFKaGtiNm9sVkZkS1wvSnJhZis4dVhieVhRSjhlUlpNQzB3OTdkOVg5UWRwSUQxZkMifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] examples/bpf: fix compilation issue 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: , Errors-To: stable-bounces@dpdk.org Sender: "stable" >=20 > > Example BPF programs t1.c, t2.c, t3.c in folder examples/bpf are failin= g to > > compile with latest dpdk.org master. >=20 > As a note, the file t3.c is one which fails to get compiled. t2.c also uses rte_mbuf, so same story for both.=20 >=20 > > The reason is changes in some core DPDK header files, that causes now i= nclusion > > of x86 specific headers. >=20 > snipped >=20 >=20 > > > > #include > > #include > > -#include > > > > #ifdef __cplusplus > > extern "C" { > > @@ -364,6 +363,23 @@ typedef struct { > > volatile int16_t cnt; /**< An internal counter value. */ } rte_atomi= c16_t; > > > > +#define RTE_CACHE_LINE_MIN_SIZE 64 /**< Minimum Cache line size. = */ >=20 > The definition for RTE_CACHE_LINE_MIN_SIZE is present in ` rte_config.h`. I believe it is not: $ find lib config -type f | xargs grep CACHE_LINE_MIN_SIZE lib/librte_eal/linux/eal/include/rte_kni_common.h:#define RTE_CACHE_LINE_MI= N_SIZE 64 lib/librte_eal/linux/eal/include/rte_kni_common.h: char pad3[8] __attr= ibute__((__aligned__(RTE_CACHE_LINE_MIN_SIZE))); lib/librte_eal/common/include/rte_memory.h:#define RTE_CACHE_LINE_MIN_SIZE = 64 /**< Minimum Cache line size. */ lib/librte_eal/common/include/rte_memory.h:#define __rte_cache_min_aligned = __rte_aligned(RTE_CACHE_LINE_MIN_SIZE) Konstantin