From patchwork Thu Nov 19 11:58:03 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wallen, Carl \(Nokia - FI/Espoo\)" X-Patchwork-Id: 56985 Delivered-To: patch@linaro.org Received: by 10.112.155.196 with SMTP id vy4csp3133208lbb; Thu, 19 Nov 2015 03:58:14 -0800 (PST) X-Received: by 10.55.197.3 with SMTP id p3mr6537292qki.11.1447934294694; Thu, 19 Nov 2015 03:58:14 -0800 (PST) Return-Path: Received: from lists.linaro.org (lists.linaro.org. [54.225.227.206]) by mx.google.com with ESMTP id 66si232327qgt.39.2015.11.19.03.58.14; Thu, 19 Nov 2015 03:58:14 -0800 (PST) Received-SPF: pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) client-ip=54.225.227.206; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) smtp.mailfrom=lng-odp-bounces@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id EEF2261C94; Thu, 19 Nov 2015 11:58:13 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on ip-10-142-244-252 X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, URIBL_BLOCKED autolearn=disabled version=3.4.0 Received: from [127.0.0.1] (localhost [127.0.0.1]) by lists.linaro.org (Postfix) with ESMTP id 6448161A4C; Thu, 19 Nov 2015 11:58:10 +0000 (UTC) X-Original-To: lng-odp@lists.linaro.org Delivered-To: lng-odp@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id B736761A4F; Thu, 19 Nov 2015 11:58:07 +0000 (UTC) Received: from demumfd001.nsn-inter.net (demumfd001.nsn-inter.net [93.183.12.32]) by lists.linaro.org (Postfix) with ESMTPS id 5E81761A2B for ; Thu, 19 Nov 2015 11:58:06 +0000 (UTC) Received: from demuprx016.emea.nsn-intra.net ([10.150.129.55]) by demumfd001.nsn-inter.net (8.15.2/8.15.2) with ESMTPS id tAJBw4xH002244 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 19 Nov 2015 11:58:05 GMT Received: from 10.144.19.15 ([10.144.164.243]) by demuprx016.emea.nsn-intra.net (8.12.11.20060308/8.12.11) with ESMTP id tAJBw31K011651 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) for ; Thu, 19 Nov 2015 12:58:04 +0100 From: Carl Wallen To: lng-odp@lists.linaro.org Date: Thu, 19 Nov 2015 13:58:03 +0200 Message-Id: <1447934283-28558-1-git-send-email-carl.wallen@nokia.com> X-Mailer: git-send-email 2.1.4 X-purgate-type: clean X-purgate-Ad: Categorized by eleven eXpurgate (R) http://www.eleven.de X-purgate: clean X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate-size: 799 X-purgate-ID: 151667::1447934285-000027D6-AAFBCB7D/0/0 X-Topics: patch Subject: [lng-odp] [PATCH 1/1] linux-generic: config: increase ODP_CONFIG_SCHED_GRPS to 256 X-BeenThere: lng-odp@lists.linaro.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "The OpenDataPlane \(ODP\) List" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: lng-odp-bounces@lists.linaro.org Sender: "lng-odp" Increase the ODP_CONFIG_SCHED_GRPS define from 16 to 256 to support a larger number of scheduling groups by default. Signed-off-by: Carl Wallen --- platform/linux-generic/include/odp/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/linux-generic/include/odp/config.h b/platform/linux-generic/include/odp/config.h index ee23df3..da8856f 100644 --- a/platform/linux-generic/include/odp/config.h +++ b/platform/linux-generic/include/odp/config.h @@ -61,7 +61,7 @@ static inline int odp_config_sched_prios(void) /** * Number of scheduling groups */ -#define ODP_CONFIG_SCHED_GRPS 16 +#define ODP_CONFIG_SCHED_GRPS 256 static inline int odp_config_sched_grps(void) { return ODP_CONFIG_SCHED_GRPS;