From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <david.marchand@6wind.com>
Received: from mail-ob0-f171.google.com (mail-ob0-f171.google.com
 [209.85.214.171]) by dpdk.org (Postfix) with ESMTP id BE298590C
 for <dev@dpdk.org>; Mon, 16 Nov 2015 22:33:28 +0100 (CET)
Received: by obbww6 with SMTP id ww6so132407010obb.0
 for <dev@dpdk.org>; Mon, 16 Nov 2015 13:33:28 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=6wind_com.20150623.gappssmtp.com; s=20150623;
 h=mime-version:in-reply-to:references:date:message-id:subject:from:to
 :cc:content-type;
 bh=382WwfxHmjCqo8aEpbrmBJ+KNfBFFpTKLxVZQ15yDJ8=;
 b=sTAV0K7j/smFeDhWdTWXXHbJmo2e3TpUSBJPydDeTle48qjtr+zN3OLsmWOGiqnCsQ
 6bZTNH+OW2tjIf7xlhXewlF0hjt28fCKuovU6DtdwR3RZG6jVUPZxvk/ITfNzpXgVje2
 etmXQL64q7o21qux37zCruxNvxHPjcifo3HPTMic0p2kedavfQDLC527+T4aPGVSGpYu
 KURSP/sHR9EWQ2HKmRYx3TGn0DQG7k6H41196frW4BPFwZKe/KoUosslZJK9X90bhsLM
 pbzgM2zsKLfYmxweJ/MxuOjqFnJH6yWyt0RaUNCE08TRegOpk+YF5TUUfPH9jf7u+QLD
 Yhww==
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=382WwfxHmjCqo8aEpbrmBJ+KNfBFFpTKLxVZQ15yDJ8=;
 b=aecT409Hx2Wy4X6INKowc8iOxWRtxLaZdfselzQUsVKDXbHoSpVUht9S7nBv2x8xhB
 GPwXGvM6znDI9SyQCy18OfNaAua7DUU4bZXYRfE7/Epa8jlTXa8XNBMgKxWSJ+LcekIl
 Deo7UggYhtLEHTOzzu5vGPPq0GF953XN0v3v/4rZK10jLFx0/L2eFumaAy3dL8fYQ/AJ
 XcOlKaNdjg5McukRCNrQnKHrQNwK8OdFZqHUVEz/NImA1aRcvji26Ajh9+yQcYSq/3xR
 cQCcBfr2fLbTXqSVe8jCksaArHufXo9tbarbymbrsvOESTCT15HgMi6hNz9EAqvkovP5
 3dmA==
X-Gm-Message-State: ALoCoQmvJiScQg8MzMqS2o5iqv60qdB6InkDB5Ba15/CCeLsi3rXtFicwAIwoJnjFIRMDbwCiWcx
MIME-Version: 1.0
X-Received: by 10.60.178.74 with SMTP id cw10mr23128048oec.6.1447709608132;
 Mon, 16 Nov 2015 13:33:28 -0800 (PST)
Received: by 10.76.131.166 with HTTP; Mon, 16 Nov 2015 13:33:28 -0800 (PST)
In-Reply-To: <1446508048-16744-1-git-send-email-viktorin@rehivetech.com>
References: <1446508048-16744-1-git-send-email-viktorin@rehivetech.com>
Date: Mon, 16 Nov 2015 22:33:28 +0100
Message-ID: <CALwxeUtZPMgWz_oARE9CieqRsTdZOVmupvjrLL-mDYkH1AQTsA@mail.gmail.com>
From: David Marchand <david.marchand@6wind.com>
To: Jan Viktorin <viktorin@rehivetech.com>
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.15
Cc: "dev@dpdk.org" <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 <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Nov 2015 21:33:29 -0000

Hello,

On Tue, Nov 3, 2015 at 12:47 AM, Jan Viktorin <viktorin@rehivetech.com>
wrote:

> Hello DPDK community,
>
> ARMv7 again, changes:
>
> * removed unnecessary code in the #ifndef RTE_FORCE_INTRINSICS .. #endif
> (atomic, spinlock, byteorder)
> * more splitting of headers to have 32/64 bit variants (atomic, cpuflags)
> * fixed cpuflags AT_PLATFORM
>
> Other details in the individual commits as usual.
>
> ---
> [snip]
> ---
>
> 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 <david.marchand@6wind.com>

Thanks Jan.


-- 
David Marchand