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 2E38CA04B1; Wed, 23 Sep 2020 12:45:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9E5A81DB59; Wed, 23 Sep 2020 12:45:17 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id AE1721DB57 for ; Wed, 23 Sep 2020 12:45:15 +0200 (CEST) IronPort-SDR: 9pKaO66GKEktRQ6GHFxa8LmkZCEh+mWdbzHVtzq61dDiFpqcn9ggkyLwClPN9+owq9TwdUoQjC FjPEwrVlfKiA== X-IronPort-AV: E=McAfee;i="6000,8403,9752"; a="148508334" X-IronPort-AV: E=Sophos;i="5.77,293,1596524400"; d="scan'208";a="148508334" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2020 03:45:14 -0700 IronPort-SDR: svOC7D6P4t5XN+OlCaWzsu0R/l1H0DgEkj9ALPfVUSakBS5VWzdHTSSXruoKjFYILsH4b1Ywtg v6zUfoTsRD7w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,293,1596524400"; d="scan'208";a="412958653" Received: from silpixa00399477.ir.intel.com ([10.237.214.232]) by fmsmga001.fm.intel.com with ESMTP; 23 Sep 2020 03:45:12 -0700 From: Radu Nicolau To: dev@dpdk.org Cc: thomas@monjalon.net, david.marchand@redhat.com, viktorin@rehivetech.com, ruifeng.wang@arm.com, jerinj@marvell.com, drc@linux.vnet.ibm.com, bruce.richardson@intel.com, konstantin.ananyev@intel.com, Radu Nicolau Date: Wed, 23 Sep 2020 10:44:29 +0000 Message-Id: <20200923104433.11442-1-radu.nicolau@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200902104343.31774-2-radu.nicolau@intel.com> References: <20200902104343.31774-2-radu.nicolau@intel.com> Subject: [dpdk-dev] [PATCH v2 0/4] Remove RTE_MACHINE_CPUFLAG_ macros 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Remove RTE_MACHINE_CPUFLAG_ macros from the build. Deprecation notice sent, pasted here for reference: * build macros: The macros defining RTE_MACHINE_CPUFLAG_* will be removed from the build. The information provided by these macros is available through standard compiler macros. For example, RTE_MACHINE_CPUFLAG_SSE3 duplicates the compiler-provided macro __SSE3__. Radu Nicolau (4): x86: change cpuflag macros to compiler macros arm: change cpuflag macros to compiler macros ppc: change cpuflag macros to compiler macros doc: remove reference to RTE_MACHINE_CPUFLAG app/test-pmd/macswap.c | 2 +- app/test/test_memcpy_perf.c | 8 ++++---- config/arm/meson.build | 6 ------ config/ppc/meson.build | 2 -- config/x86/meson.build | 2 -- doc/guides/prog_guide/writing_efficient_code.rst | 2 -- doc/guides/rel_notes/release_20_11.rst | 1 + drivers/net/enic/meson.build | 2 +- drivers/net/i40e/meson.build | 2 +- drivers/net/iavf/meson.build | 2 +- drivers/net/ice/meson.build | 2 +- drivers/net/ixgbe/ixgbe_ethdev.c | 2 +- examples/l3fwd/l3fwd.h | 2 +- examples/l3fwd/l3fwd_em.c | 16 ++++++++-------- examples/l3fwd/l3fwd_em_hlm.h | 2 +- examples/l3fwd/l3fwd_em_sequential.h | 2 +- examples/l3fwd/l3fwd_lpm.c | 6 +++--- lib/librte_acl/meson.build | 2 +- lib/librte_eal/arm/include/rte_memcpy_32.h | 2 +- lib/librte_eal/common/rte_random.c | 4 ++-- lib/librte_eal/x86/include/rte_memcpy.h | 8 ++++---- lib/librte_efd/rte_efd_x86.h | 2 +- lib/librte_hash/rte_cuckoo_hash.c | 4 ++-- lib/librte_hash/rte_hash_crc.h | 2 +- lib/librte_hash/rte_thash.h | 4 ++-- lib/librte_member/rte_member.h | 2 +- lib/librte_member/rte_member_ht.c | 10 +++++----- lib/librte_member/rte_member_x86.h | 2 +- lib/librte_net/rte_net_crc.c | 4 ++-- lib/librte_node/ip4_lookup.c | 2 +- lib/librte_sched/rte_sched.c | 2 +- lib/librte_table/rte_lru_arm64.h | 2 +- lib/librte_table/rte_table_hash_func.h | 2 +- 33 files changed, 52 insertions(+), 63 deletions(-) -- 2.17.1