From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vk0-f46.google.com (mail-vk0-f46.google.com [209.85.213.46]) by dpdk.org (Postfix) with ESMTP id BF548FFA for ; Tue, 8 Dec 2015 08:56:16 +0100 (CET) Received: by vkha189 with SMTP id a189so7195685vkh.2 for ; Mon, 07 Dec 2015 23:56:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro-org.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=70/dVfpRCJA7JwxxnX/2InXit8tWIhRiMDGdQRIU5R4=; b=Ekh17xLIYYxKLg+/6PcfVGJvELy1NmzHKCDxmpuchUbx20orvA9aBHMSCP50EP/6Ql I8/W98Jkp1RldbmitH1+DaqMXn5e/wYn1WOtAosCW+ypQTtdA2SsQfsw8MbWkK6z2IzY reyBduWOpgXAv11C1eYYKCBUYIeaJNUrTdJb3P7WYc6uktOH6pDXPWlhwXX+vPW2qQ08 2cJ+PvrteE6pqTXixk+9+5eRfxGTprsY6MHrmZ6wK6Or7FtCT8VSYS7phypdzkym4XBV PWXk6c3xOPOG0UguSDFbx5K2BsufhoxljYUoq+KMcQ8738bC6f322oX0q94gFkVlblbN Tcsw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=70/dVfpRCJA7JwxxnX/2InXit8tWIhRiMDGdQRIU5R4=; b=eyB/xE+iGrhS0uNOKjvacZyx9mByYbrn1ZYDRnY4QuyxYqp56Zu3z+sEs4oExzfT2w 6b92DRlNecaw6IOsP9nlv+TaqVDgLNykg2gxoVNlJUaaGhlATGi8hz2FOvfWCKo4bk51 X+RcAo7wgQDB4YbAEUffCkg3XXssHjv5jGEW3kVPkrKDjO3yBA0FfFBHC6pyenAOLkbX nm2KZbnfipzjjk4p3lZ477q6mdRo6wrQT4A/mXrMGSVREe5vIeSDXsl1rtqOgZVlGi6S 1P/eqdENvg/kgdF3AovyKH7heRXDPKWFRIMTIwohZmKMvgIGHusiBqLO5lAEEjDvX1XG tixQ== X-Gm-Message-State: ALoCoQkdjryq+YAF3TqxfIXtuHHaiULxW1S1wK0AWZFsRVd5VV/gIW4nMv/w9325srE9Ft+P0IBgvoRtMvCgnjhV9JyU07t2zClvbHlR5vYHld5k04KTnHU= MIME-Version: 1.0 X-Received: by 10.31.169.8 with SMTP id s8mr2070721vke.148.1449561376273; Mon, 07 Dec 2015 23:56:16 -0800 (PST) Received: by 10.31.95.215 with HTTP; Mon, 7 Dec 2015 23:56:16 -0800 (PST) In-Reply-To: <4116700.gN3RbU5N65@xps13> References: <1448995276-9599-1-git-send-email-jianbo.liu@linaro.org> <5439330.ZDtZO93Tq2@xps13> <4116700.gN3RbU5N65@xps13> Date: Tue, 8 Dec 2015 15:56:16 +0800 Message-ID: From: Jianbo Liu To: Thomas Monjalon Content-Type: text/plain; charset=UTF-8 Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 2/3] eal/acl: enable acl for armv7-a X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Dec 2015 07:56:17 -0000 On 8 December 2015 at 10:23, Thomas Monjalon wrote: > 2015-12-08 09:50, Jianbo Liu: >> On 8 December 2015 at 09:18, Thomas Monjalon wrote: >> > 2015-12-03 23:02, Jianbo Liu: >> >> -ifeq ($(CONFIG_RTE_ARCH_ARM64),y) >> >> +ifneq ($(filter y,$(CONFIG_RTE_ARCH_ARM) $(CONFIG_RTE_ARCH_ARM64)),) >> > [...] >> >> +#ifdef RTE_ARCH_ARM >> >> +/* NEON intrinsic vqtbl1q_u8() is not supported in ARMv7-A(AArch32) */ >> > >> > I'm convinced there is a good reason why ARMv8 is also called ARCH_ARM64, >> > and ARMv7 may be called AArch32 or ARCH_ARM. But I don't know why? >> > >> https://lkml.org/lkml/2012/7/15/133 >> >> > Is ARCH_ARM32 or ARCH_ARMv7 too simple? >> > Is it possible to have a 32-bit ARMv8? >> Yes, ARMv8-R/M > > So what does mean CONFIG_RTE_ARCH_ARM? > ARMv7? ARM32? > Please consider a renaming. I'd rather not renaming becase it can be both ARMv7 and AARCH32, which are ISA compatibility. If further differentiation is needed, CONFIG_RTE_ARCH_ARMv7 is added in the config, just like Jan Viktorin did.