From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stable-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id AB651A0548
	for <public@inbox.dpdk.org>; Wed, 21 Apr 2021 11:16:55 +0200 (CEST)
Received: from [217.70.189.124] (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id 9DC63419D3;
	Wed, 21 Apr 2021 11:16:55 +0200 (CEST)
Received: from us-smtp-delivery-124.mimecast.com
 (us-smtp-delivery-124.mimecast.com [216.205.24.124])
 by mails.dpdk.org (Postfix) with ESMTP id F3584419D3
 for <stable@dpdk.org>; Wed, 21 Apr 2021 11:16:53 +0200 (CEST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com;
 s=mimecast20190719; t=1618996613;
 h=from:from:reply-to:subject:subject:date:date:message-id:message-id:
 to:to:cc:cc:mime-version:mime-version:content-type:content-type:
 content-transfer-encoding:content-transfer-encoding:
 in-reply-to:in-reply-to:references:references;
 bh=rvUm7eN9lXVNgkCdL/wabzC+Sw1u1ERHEsYoZ1LNGu8=;
 b=iv+1wiM2aia9/EVFNAfVqGzjacQix3ezFd28jzk86aZLi/v61T9oucut0Sd4StsuLM/wxZ
 ECwOZzgK/5QXbcPExiZqP40F4JhsE5ciW4G8pqb67wVWcVXQpP2to2wIUl6XhXAyezHa7V
 CKPnG4KNj8UpH9kP7ashdHkVUPOZEM0=
Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com
 [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id
 us-mta-9-Y6KjxlNOPOqMHY2Z7HpTgQ-1; Wed, 21 Apr 2021 05:16:49 -0400
X-MC-Unique: Y6KjxlNOPOqMHY2Z7HpTgQ-1
Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com
 [10.5.11.22])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 289CB343A3;
 Wed, 21 Apr 2021 09:16:48 +0000 (UTC)
Received: from [10.36.110.9] (unknown [10.36.110.9])
 by smtp.corp.redhat.com (Postfix) with ESMTPS id D1FC610023B2;
 Wed, 21 Apr 2021 09:16:42 +0000 (UTC)
To: =?UTF-8?Q?Juraj_Linke=c5=a1?= <juraj.linkes@pantheon.tech>,
 thomas@monjalon.net, david.marchand@redhat.com, bruce.richardson@intel.com,
 aconole@redhat.com, maicolgabriel@hotmail.com
Cc: dev@dpdk.org, stable@dpdk.org
References: <1615988163-17371-1-git-send-email-juraj.linkes@pantheon.tech>
 <1618995020-4775-1-git-send-email-juraj.linkes@pantheon.tech>
 <1618995020-4775-4-git-send-email-juraj.linkes@pantheon.tech>
From: Maxime Coquelin <maxime.coquelin@redhat.com>
Message-ID: <dd4b59c1-9b59-b449-8a2c-76fe6d562da0@redhat.com>
Date: Wed, 21 Apr 2021 11:16:41 +0200
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101
 Thunderbird/78.8.1
MIME-Version: 1.0
In-Reply-To: <1618995020-4775-4-git-send-email-juraj.linkes@pantheon.tech>
X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22
Authentication-Results: relay.mimecast.com;
 auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com
X-Mimecast-Spam-Score: 0
X-Mimecast-Originator: redhat.com
Content-Type: text/plain; charset=utf-8
Content-Language: en-US
Content-Transfer-Encoding: 8bit
Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH v16 3/8] net/virtio: fix
 aarch32 build
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: patches for DPDK stable branches <stable.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
Errors-To: stable-bounces@dpdk.org
Sender: "stable" <stable-bounces@dpdk.org>



On 4/21/21 10:50 AM, Juraj Linkeš wrote:
> NEON vector path of the PMD needs aarch64 support. But it was
> enabled for aarch32 build as well because aarch32 build had
> cpu_family set to aarch64. So build for aarch32 will fail due
> to unsupported intrinsics.
> 
> Fix aarch32 build by updating meson file to exclude NEON vector
> implementation for aarch32.
> 
> Fixes: 749799482a72 ("net/virtio: add to meson build")
> Cc: bruce.richardson@intel.com
> Cc: stable@dpdk.org
> 
> Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
> ---
>  drivers/net/virtio/meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)


Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>

Thanks,
Maxime