From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id DB652A6A for ; Wed, 18 Nov 2015 22:47:02 +0100 (CET) Received: by wmvv187 with SMTP id v187so299616655wmv.1 for ; Wed, 18 Nov 2015 13:47:02 -0800 (PST) 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=eKbBWO4Zy1KtEePmUGaWhx+EI4tkYvIiXpmkzl40pLM=; b=ADjb7wOwqVrTuKeqCjjP1Y/FDeARXlLdvMnpEsH74lOir6FBb53c7ctfTTR7jD/kSv q6ApkKUbv+idMXtGskiFpbT1HkDFqCItUTXgANGlKslI4waUOW1T3J3E1JoGm2lRPm50 aL4l4qr706sEYNAasvqMhtefaxDpfzMvG5x1r0eDLxRXM/n2uAR8o67S6jUKvaW+1rpo aq655/T9EAZWvgTEm+hiXNWEBFWvXCJLLanH4L1NQzF4ng0PNx5j2k9hAEMGgp6AqGX9 Hwsk+dD+o8NWa3oLTglapeDXoJDcWTyf4ogx+vDNAHdW+iDjvX2y2/jwJEDnSBxnai/h 0wWg== 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=eKbBWO4Zy1KtEePmUGaWhx+EI4tkYvIiXpmkzl40pLM=; b=Sr7SA9KAoOb+aQJUxy4dRGb6cd5ljCd99LOzLJ5banqu6pUrur2GFbts/lWpcTXSWt KEBAVLct4Hu+ahrSYKfQui7pdPn5p65Nw5TrfL9ZSf39JTm0jQBvBPgW/98LzI+yxoqa zt97nGXcnbhaLzkKQxnarPxZsNdhLX2BeFyl1//7VwY59uw+b5oglBNNZOYUJyhtgNOH x1Lg+K0BaTOOEp4U/mTlbMSPP7YJ7go2ld3VjPbQ1kRRSKSm54Zhz3c6vpPIZ/dajgQk VAORyFPXG+n6RgL8aTyA2BGhEGjN3NQiOfpPNPEV2ElPPDqz5ZjqaacNJwLmtHMr7h51 Xk6Q== X-Gm-Message-State: ALoCoQmg8UpXX5hdjL3nAydlp60G+1c6A6fmuMZ3KyZmBr8LsmeinGeERrqIA5zDdSDd5LX17Hze X-Received: by 10.194.20.35 with SMTP id k3mr4353492wje.19.1447883222677; Wed, 18 Nov 2015 13:47:02 -0800 (PST) Received: from xps13.localnet (guy78-1-82-235-116-147.fbx.proxad.net. [82.235.116.147]) by smtp.gmail.com with ESMTPSA id 77sm5196926wml.20.2015.11.18.13.47.01 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 18 Nov 2015 13:47:01 -0800 (PST) From: Thomas Monjalon To: Jan Viktorin Date: Wed, 18 Nov 2015 22:45:47 +0100 Message-ID: <1482016.8BKBXrqIF8@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: <1446508048-16744-1-git-send-email-viktorin@rehivetech.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 v6 00/15] Support ARMv7 architecture 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: Wed, 18 Nov 2015 21:47:03 -0000 > > Jan Viktorin (7): > > eal/arm: implement rdtsc by PMU or clock_gettime > > eal/arm: use vector memcpy only when NEON is enabled > > eal/arm: detect arm architecture in cpu flags > > eal/arm: rwlock support for ARM > > eal/arm: add very incomplete rte_vect > > gcc/arm: avoid alignment errors to break build > > maintainers: claim responsibility for ARMv7 > > > > Vlastimil Kosar (8): > > eal/arm: atomic operations for ARM > > eal/arm: byte order operations for ARM > > eal/arm: cpu cycle operations for ARM > > eal/arm: prefetch operations for ARM > > eal/arm: spinlock operations for ARM (without HTM) > > eal/arm: vector memcpy for ARM > > eal/arm: cpu flag checks for ARM > > mk: Introduce ARMv7 architecture > > > > > Looks good to me. > Acked-by: David Marchand > > Thanks Jan. Applied, thanks The rte_vect patch is squashed/removed because Jerin's patch replace it.