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 025B3374D for ; Fri, 27 Nov 2015 11:24:21 +0100 (CET) Received: by wmec201 with SMTP id c201so63901082wme.0 for ; Fri, 27 Nov 2015 02:24:20 -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=WmwVpm1bZWjZcOEVGse+G6oasLVoTh6To6oTPcfd5fg=; b=oTdsD4+5gjFKmOO3R64hmRXOUtF5NwhEPOG2ueEOo1ssulA8oi4QKdnCDnfIrB5FUH zWByh/7wIur5Iekz4vc2zGyFAZ/YFOMKpdGWKcUTl1v54fHZ6ozMOYT++z48Ihe+nzD4 5WloVdQnF3ZUd7H260R3ciKMkRaRqdmaxgZ3z2c/jWip0Np2OiGNut7v3VLAY9DBdTFV OsS1FOT4oQk1abLQX9JiYqEg6kVARtcWZ2UVTGWrwgVtYUZcbaUVFlNugp8cVmELkFuF pY9qrKmp8N2REpvJ1kF9d1vdsMZFRuYrf7rEzT4RuZ857B9yVtrwoUVjcuS8AhfEGpE/ 52Ag== 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=WmwVpm1bZWjZcOEVGse+G6oasLVoTh6To6oTPcfd5fg=; b=XC3hYFFudVi7qSv67oDgGI1tko5EzBze3eSgviofA8OZyuGCFxrkWCuZFrghG4q7B+ MKVzU/qPP1dMPUMfLx9U9RlKM0V/nvZaREHG9cGOqJX8cCWCC5Btv71ubU+FfGXKnpr9 Wquh87n3wBbmmDTzStIK208lx7hmLn4+5pi3GNKeSedSl1U8ahb9PrFZ6QOebTS8qp70 7vn1x5xjoCG7AX0phPQq69aG1sj1yGRtrYWb8gftWa68AuDIo10Iq4FT2eE5vYyn13n2 /+mOztZTgn9RoWrOOFdxj6hZCdz7ZXokkp959BMP8JaImbmKxsRIUcWAUzUkYTd5HlWd BrBA== X-Gm-Message-State: ALoCoQk/ovWnbBT//zUR+lFswcLPTapBxZixB2aKrHXDw9buPmEamR4BDS7T+ymoY7gB5Db32DdP X-Received: by 10.28.156.83 with SMTP id f80mr9882746wme.41.1448619860797; Fri, 27 Nov 2015 02:24:20 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id u185sm6776705wmu.19.2015.11.27.02.24.19 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 27 Nov 2015 02:24:20 -0800 (PST) From: Thomas Monjalon To: Jerin Jacob Date: Fri, 27 Nov 2015 11:23:01 +0100 Message-ID: <2297109.XH6RklrXdH@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1448617997-18040-1-git-send-email-jerin.jacob@caviumnetworks.com> References: <1448617997-18040-1-git-send-email-jerin.jacob@caviumnetworks.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] config: disable CONFIG_RTE_SCHED_VECTOR for arm 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: Fri, 27 Nov 2015 10:24:21 -0000 Hi Jerin, 2015-11-27 15:23, Jerin Jacob: > Commit 42ec27a0178a causes compiling error on arm, as RTE_SCHED_VECTOR > does support only SSE intrinsic, so disable it till we have neon support. > > Fixes: 42ec27a0178a ("sched: enable SSE optimizations in config") > > Signed-off-by: Jerin Jacob > --- > config/defconfig_arm-armv7a-linuxapp-gcc | 1 + > config/defconfig_arm64-armv8a-linuxapp-gcc | 1 + > config/defconfig_arm64-thunderx-linuxapp-gcc | 1 + > config/defconfig_arm64-xgene1-linuxapp-gcc | 1 + You would not need to update 4 files if the 3 last ones were including the first one. I think having an arm config base would also make clearer the differences between the arm platforms.