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 60D54378E for ; Fri, 27 Nov 2015 15:51:19 +0100 (CET) Received: by wmww144 with SMTP id w144so58272035wmw.1 for ; Fri, 27 Nov 2015 06:51:19 -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=6otWrRMJdUlEkvrWAqNOxYW+R26/VAKucR2luZCbuBA=; b=jTkH0N7PMhoBSoVXYJnn5d6glGAdUt6sbpwKyL1cyL7OVHFvsXjLgQna1ihUge1zFA D70z+vwe+vRNebvxQMxZFEDBIKWNz0rYv2ONO5OJdr1V7foJgLPQyrdi47bYKuaOYFdZ h+m8+7ykVbPQnFcNype9TDJ/YZ2ot223XeCQp8ii7pfNTZrP/nEF2xLTTq/Z7jAIsF2e Jwm3wX0on8F8mWN2py7LSuazyH4lBoOuqSkXeg0a5EYfy1wYn1YjNF20LCHYV4tnEIOX GLSLP5Zo9uDap0IoR6HYvYNEC/23xBFpnPZGFNmwrFtug8xbJDc6yZNWUX83SVylbOrP x22w== 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=6otWrRMJdUlEkvrWAqNOxYW+R26/VAKucR2luZCbuBA=; b=YkIhwybukRuYYfYipVQDnCFzLZRv0sdPzKltPHko4tcSu/9np+QgL6JZBu488UMjOE KaGM+1dsgGh9DzVIKWUPIPhnqDuvRaSYMoyED7W358G1013KS0smHNhU0Aouk6xlFq3h Tw52Hzi9hDA2hCLn11VXt1jUumr0GvXA708ppqVSIhGh4Jb8Y/sqGWkNVYSZoxbtiKf7 tTvL6LmFCVFkAGo6aGpGFNmd63c7awmRdfGO7sxiBbWQKHw+JjGcidqQIYI39IKuyE3U sNQMNVPr52mdiamRAMn/kwZqnrEHJbs/s1c5/eGfAfX1Sl0Z7S5BD0QS8HZvYOE8BhzG FMZQ== X-Gm-Message-State: ALoCoQmsjVD4vXr9tXCKGzACzKUV1nj1lorTUe3WxW9mmg3OHJaMgKu3S3Qfh5IWSBjX7xIQ+ybm X-Received: by 10.28.59.131 with SMTP id i125mr11667753wma.75.1448635879227; Fri, 27 Nov 2015 06:51:19 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id q6sm33073815wjx.28.2015.11.27.06.51.18 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 27 Nov 2015 06:51:18 -0800 (PST) From: Thomas Monjalon To: Jan Viktorin , Jerin Jacob Date: Fri, 27 Nov 2015 15:49:59 +0100 Message-ID: <2507086.1M5oHiOpA1@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20151127154025.59ad8a18@pcviktorin.fit.vutbr.cz> References: <1448631268-10692-1-git-send-email-jerin.jacob@caviumnetworks.com> <20151127154025.59ad8a18@pcviktorin.fit.vutbr.cz> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v3 0/2] 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 14:51:19 -0000 2015-11-27 15:40, Jan Viktorin: > Hello, > > this what I was talking about at the Userspace Summit in Dublin... > Somebody adds a feature or change a default setting and it breaks > builds of other configurations and platforms. The current build system > in DPDK is really imperfect. The issue is due to enablement of a new feature for every platforms without dependency check. Actually the patch should disable CONFIG_RTE_SCHED_VECTOR for every non-x86 platforms. Another fix is discussed in another thread to disable the feature inside the code if the platform cannot support it (currently AVX is required).