From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9F110A04B5; Tue, 27 Oct 2020 13:47:56 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4475B4C89; Tue, 27 Oct 2020 13:47:53 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by dpdk.org (Postfix) with ESMTP id 570AD2C2E for ; Tue, 27 Oct 2020 13:47:51 +0100 (CET) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id C950C7F4FD; Tue, 27 Oct 2020 15:47:49 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru C950C7F4FD DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1603802869; bh=ntg7jPg+ySgWD2d4OOYa/D9eVc6+48mlJILCAhkC/t4=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=sbDJuwsHakKZd9V20jn0cJffMl+8H46/NqbunE16HUR42FC8dB2cPKLIVI+ynnCw4 6SJzegsdy0Y2sP1AST2BPa537aOpHcdiqVxROiudcleNVG01AyYo/Wup0h9xiYo4G6 jRvE1BeLTanxs/GXRvYKlj/spToIvBHxlRxCC8rw= To: Ferruh Yigit , Leyi Rong , qi.z.zhang@intel.com, bruce.richardson@intel.com, wenzhuo.lu@intel.com, Ali Alnubani , David Marchand Cc: dev@dpdk.org References: <20201027101926.112609-1-leyi.rong@intel.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: Date: Tue, 27 Oct 2020 15:47:49 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] net/ice: add AVX512BW flag check both in build and runtime X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 10/27/20 2:57 PM, Ferruh Yigit wrote: > On 10/27/2020 10:19 AM, Leyi Rong wrote: >> Intrinsic function __mm512_bsrli_epi128 should be used in >> the environment which supports AVX512BW, so adds check for >> this flag. >> >> Fixes: 5dd3b8f3af34 ("net/ice: add AVX512 vector path") >> >> Signed-off-by: Leyi Rong > > Squashed into relevant commit in next-net, thanks. > > > Andrew, Ali, David, > > Can you please confirm the issue is solved in the next-net/main? Yes, it solved build issues which I observed. Andrew.