From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f181.google.com (mail-wi0-f181.google.com [209.85.212.181]) by dpdk.org (Postfix) with ESMTP id 84B7D8DA4 for ; Thu, 29 Oct 2015 19:29:05 +0100 (CET) Received: by wicfx6 with SMTP id fx6so235551586wic.1 for ; Thu, 29 Oct 2015 11:29:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind_com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=DGcEniuj1kZmLMyENshrHHTLpI4lBQ4CgjIp//D39uw=; b=17oqKLfdF4wwzYJ+pmTaOxXsyOxb4ZYNM7M58ObHZxr+pcEhg//XLxXmykloZQnifn AOndIIjRhJNMhd7EZKxTbZcNZBeGXYPS1Jxh2G0ZwTW1gOMR/gdaN/tfybLnQpnqXIc+ 3GkYXfF/Bcvb8arLayPq9Ha6SzYVjIFMaWypSZgGCSHB4e++OZAopniWiMXiCfIpzKYl 7tEylGosqyb2mNUHy25Q9ErE3V/sBcluiPyh6c2NhGJ1ATS9AHf6QY0D85u7Y/CIuRVZ TQyiqItLRCaLK1/EkgKlr/1b5FJ0cxtPFxCUfv+Hy1HmSbv3vcR3fS9loFG9QJShQ0pN o1Lw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=DGcEniuj1kZmLMyENshrHHTLpI4lBQ4CgjIp//D39uw=; b=NaIvSPN0+Q3leGdCdJn/yJ/Ts62PGWUU0x+o4BlMvxUvdRyzLRR/DybS4EtLPDT5/P MHlS9KpzBVdqvGID8gwxE4opeD9AoufMMyTBacKIwmyj9VkkU141b7p7bwqQhRw8nIJU Xia92PUQXEKb/rRvdgnDdoG66x+/I5zZhTr9al5g9Fwmu9Dfoa9hAdpld73ABWgucBec ZggbNNt6Hgq6jfIv7plNPZl8cgCq31FxxdiiHjMukl/2ig4coQ3i/w39zW+1JGIapHDx 8iyxp1UWHkxM0IGQSUNGafEmFFbB+vbY75OxKa6C48iVlZZoWDs78W5W0jABujRjHzIA Isjg== X-Gm-Message-State: ALoCoQlU0l7vviyyghkaT5tzX+LTRDJ7plhPjrL3pWfbEIXny3k7zOGevINjWtyT7zmK5vVD1PeC X-Received: by 10.194.142.45 with SMTP id rt13mr4233988wjb.45.1446143345244; Thu, 29 Oct 2015 11:29:05 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id w66sm4765192wme.11.2015.10.29.11.29.04 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 29 Oct 2015 11:29:04 -0700 (PDT) From: Thomas Monjalon To: David Hunt , Jan Viktorin Date: Thu, 29 Oct 2015 19:27:53 +0100 Message-ID: <5289220.BuGOiUSaJq@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1446139794-16071-1-git-send-email-david.hunt@intel.com> References: <1446139794-16071-1-git-send-email-david.hunt@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 0/5] ARMv8 additions to ARMv7 support 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: Thu, 29 Oct 2015 18:29:05 -0000 Thanks David. 2015-10-29 17:29, David Hunt: > This is an updated patchset for ARMv8 that now sits on top of the previously > submitted ARMv7 code by RehiveTech. It re-uses a lot of that code, and splits > some header files into 32-bit and 64-bit versions, so uses the same arm include > directory. [...] > eal/arm: split arm rte_memcpy.h into 32 and 64 bit versions. > eal/arm: split arm rte_prefetch.h into 32 and 64 bit versions [...] > .../common/include/arch/arm/rte_memcpy.h | 302 +------------------ > .../common/include/arch/arm/rte_memcpy_32.h | 334 +++++++++++++++++++++ > .../common/include/arch/arm/rte_memcpy_64.h | 322 ++++++++++++++++++++ > .../common/include/arch/arm/rte_prefetch.h | 31 +- > .../common/include/arch/arm/rte_prefetch_32.h | 61 ++++ > .../common/include/arch/arm/rte_prefetch_64.h | 61 ++++ Jan, it would be easier to review if your patchset was creating the 32-bit versions of these files. Then David just has to add the 64-bit ones.