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 E33D3A04E6; Wed, 9 Dec 2020 14:37:36 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7368DC970; Wed, 9 Dec 2020 14:37:34 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by dpdk.org (Postfix) with ESMTP id 12135C952; Wed, 9 Dec 2020 14:37:32 +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)) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 733757F59C; Wed, 9 Dec 2020 16:37:30 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 733757F59C DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1607521050; bh=dOCzyXD+xFap8IVkMe4cHxOKVyTHlVB7l+V9RkVEacY=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=u2PeHbO5DoMFCtazxAaQC5yCwJhxyZ8z4+ZUQGB6lAOjeHoGlTsn+Nrfem6psTaTZ IkM1qkTI652xWj3bgwIrjwsNRkGXwil0k8AdKZhdf8uFBYbLyikM2kVHLiK8hFp3R8 +K/cvqF6DOFY4DFJ5gyIKbgT8F8dmyhYszNbsOFo= To: =?UTF-8?Q?Juraj_Linke=c5=a1?= , thomas@monjalon.net, bruce.richardson@intel.com, aconole@redhat.com, maicolgabriel@hotmail.com Cc: dev@dpdk.org, Ruifeng Wang , stable@dpdk.org References: <1600244472-29696-1-git-send-email-juraj.linkes@pantheon.tech> <1607518771-7564-1-git-send-email-juraj.linkes@pantheon.tech> <1607518771-7564-2-git-send-email-juraj.linkes@pantheon.tech> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <5e4018e2-d83c-74d3-0823-d195eb1639b5@oktetlabs.ru> Date: Wed, 9 Dec 2020 16:37:30 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.5.0 MIME-Version: 1.0 In-Reply-To: <1607518771-7564-2-git-send-email-juraj.linkes@pantheon.tech> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] ***Spam*** [PATCH v11 1/7] net/sfc: fix aarch32 build 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 12/9/20 3:59 PM, Juraj Linkeš wrote: > From: Ruifeng Wang > > The sfc PMD was enabled for aarch32 which is 32-bit mode but has > cpu_family set to aarch64. > As sfc support only 64-bit system, it should be disabled for aarch32. > > Updated meson file to disable sfc for aarch32 build. > > Fixes: 141d2870675a ("net/sfc: support aarch64 architecture") > Cc: arybchenko@solarflare.com > Cc: stable@dpdk.org > > Signed-off-by: Ruifeng Wang Acked-by: Andrew Rybchenko Many thanks for the fix.