From patchwork Tue Dec 1 15:13:23 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christian Ehrhardt X-Patchwork-Id: 9209 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 814C48D95; Tue, 1 Dec 2015 16:13:33 +0100 (CET) Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by dpdk.org (Postfix) with ESMTP id AFC1612A8 for ; Tue, 1 Dec 2015 16:13:31 +0100 (CET) Received: from [10.172.196.172] (helo=Weiknorze.fritz.box) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1a3mcV-0006Cr-H1; Tue, 01 Dec 2015 15:13:31 +0000 From: Christian Ehrhardt To: dev@dpdk.org Date: Tue, 1 Dec 2015 16:13:23 +0100 Message-Id: <1448982803-28760-1-git-send-email-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH] mk: disable SCHED_VECTOR in the default config 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" As it causes issues when building with RTE_MACHINE=default due to SSE4.x requirements and in other discussions was so far rated "lightly tested and doesn't provide really significant performance improvement" let us disable that in the default config. (=> http://dpdk.org/ml/archives/dev/2015-November/029067.html) Signed-off-by: Christian Ehrhardt Acked-by: Stephen Hemminger --- [diffstat] common_bsdapp | 2 +- common_linuxapp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) [diff] --- a/config/common_bsdapp +++ b/config/common_bsdapp @@ -440,7 +440,7 @@ CONFIG_RTE_SCHED_COLLECT_STATS=n CONFIG_RTE_SCHED_SUBPORT_TC_OV=n CONFIG_RTE_SCHED_PORT_N_GRINDERS=8 -CONFIG_RTE_SCHED_VECTOR=y +CONFIG_RTE_SCHED_VECTOR=n # # Compile the distributor library --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -451,7 +451,7 @@ CONFIG_RTE_SCHED_COLLECT_STATS=n CONFIG_RTE_SCHED_SUBPORT_TC_OV=n CONFIG_RTE_SCHED_PORT_N_GRINDERS=8 -CONFIG_RTE_SCHED_VECTOR=y +CONFIG_RTE_SCHED_VECTOR=n # # Compile the distributor library