From patchwork Wed Sep 13 10:15:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alan Dewar X-Patchwork-Id: 28650 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 231BC199A9; Wed, 13 Sep 2017 12:16:07 +0200 (CEST) Received: from mail-pg0-f68.google.com (mail-pg0-f68.google.com [74.125.83.68]) by dpdk.org (Postfix) with ESMTP id 40EE97CFD for ; Wed, 13 Sep 2017 12:16:04 +0200 (CEST) Received: by mail-pg0-f68.google.com with SMTP id i130so5442160pgc.0 for ; Wed, 13 Sep 2017 03:16:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=SHZ95WwNi34VCZiLTk/VJb8PvNptt9V5WsbHav+cwA4=; b=n4d+zVaUvZ4J8zNYSHqDXqUOPWjQa2jZhRwVYsYFn3CqoB7MXP7mPFguNzsP7qgQgY pss3AKoSeS/v63gGEx/7uTSzUYvGfbDonBcRKuJFcm6hcxcC9cKPNtEAEnRSWV6U4MxS DDWBMzXgWU/YAhX6cSguWH+ibek3/PC1P+Dq4ZRD7ddxyXIGt3Iwd2Rlc3n152d57fiV uDRfkUv7uWlL+7sa6Wu7tcmN6IKHfY1E1v6YCP6d6Pj2UmS/S9F9YqzB7Pa+ZHhCfSff oEKD5Yv0we1rzJYNt+QHt8pYSEswv0+dx6n8fuFh/2welQFMZch6vtJ/oQ/uJDOH2RnS 7pnA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=SHZ95WwNi34VCZiLTk/VJb8PvNptt9V5WsbHav+cwA4=; b=PNat1AV3hW1dx8KktPflca5CxX4zlMBD+WK0cSJAImPZ8g0QnC4LV3WZHdMhvQL8bJ S2Ujh9tA0YvEEqbwIrVLzXWwpGX8AwqdCeQ3VEhJBN9S5UJ8dfvkh5q5OgRzC2N0GZUk JX+aGSEnP4whW0uOJG+EYXKoprN27YmIliV+CmtT0Q98uVWVy9Urby5ORb9EoFvmzAcG ptzRdwpdMD1uyEkG3Ia6E27Wgq80kHSTA+X2qg6A9NUfRdm0sSsgGQsj/ARxHYrhnh19 hoJ5+AqI9TAbaJHL/5tcAGggf9GNieB8g0UDrqQUTITM0tR1b5RJkyophOs6oUVOfxOj nS3A== X-Gm-Message-State: AHPjjUgdeJLE7cYNC6+CFrEmwLbC+Db4cBgTAPar0wDt+v+xpuaCznyY wC1VUIa+kvFJow== X-Google-Smtp-Source: ADKCNb4ytMkXeqmR8jWVq/9ZXrPjEXftVQ6e2s7K3Q+Sx9gOsuXLtpYjt4npswFSuE4oCDgkZ/kYVw== X-Received: by 10.99.61.143 with SMTP id k137mr16991649pga.389.1505297764110; Wed, 13 Sep 2017 03:16:04 -0700 (PDT) Received: from bra-l27t7p12.corp.brocade.com ([213.251.34.151]) by smtp.gmail.com with ESMTPSA id q67sm2752098pfg.160.2017.09.13.03.16.00 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 13 Sep 2017 03:16:03 -0700 (PDT) From: alangordondewar@gmail.com X-Google-Original-From: alan.dewar@att.com To: tomasz.kantecki@intel.com Cc: dev@dpdk.org, Alan Dewar Date: Wed, 13 Sep 2017 11:15:44 +0100 Message-Id: <1505297744-15240-1-git-send-email-alan.dewar@att.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1504273290-5429-1-git-send-email-alan.dewar@att.com> References: <1504273290-5429-1-git-send-email-alan.dewar@att.com> Subject: [dpdk-dev] [PATCH v2] sched: make RED scaling configurable 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" From: Alan Dewar The RED code stores the maximum threshold is a 32-bit integer as a pseudo fixed-point floating number with 10 fractional bits. Twelve other bits are used to encode the filter weight, leaving just 10 bits for the queue length. This limits the maximum queue length supported by RED queues as 1024 packets. Move the "hard" definitions from red.h into config/common_base so that RED scaling can be configured during build. Modified the RED unit-tests to use the new "soft" definition of maximum-threshold from config/common_base in tests where it previously used a hard coded limit of 1023. The RED unit-tests all successfully pass when the maximum-threshold is configured as 8191 and the RED scaling factor is dropped to seven. Real-world testing has involved RED queue lengths of 8192 with multiple different settings of the RED config parameters: min_th, max_th, wq_log2 and maxp_inv. Signed-off-by: Alan Dewar Acked-by: Tomasz Kantecki --- config/common_base | 2 ++ lib/librte_sched/rte_red.h | 3 +-- test/test/test_red.c | 20 ++++++++++---------- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/config/common_base b/config/common_base index 5e97a08..5501dfe 100644 --- a/config/common_base +++ b/config/common_base @@ -666,6 +666,8 @@ CONFIG_RTE_SCHED_COLLECT_STATS=n CONFIG_RTE_SCHED_SUBPORT_TC_OV=n CONFIG_RTE_SCHED_PORT_N_GRINDERS=8 CONFIG_RTE_SCHED_VECTOR=n +CONFIG_RTE_RED_SCALING=10 +CONFIG_RTE_RED_MAX_TH_MAX=1023 # # Compile the distributor library diff --git a/lib/librte_sched/rte_red.h b/lib/librte_sched/rte_red.h index ca12227..49d3379 100644 --- a/lib/librte_sched/rte_red.h +++ b/lib/librte_sched/rte_red.h @@ -51,10 +51,9 @@ extern "C" { #include #include #include +#include -#define RTE_RED_SCALING 10 /**< Fraction size for fixed-point */ #define RTE_RED_S (1 << 22) /**< Packet size multiplied by number of leaf queues */ -#define RTE_RED_MAX_TH_MAX 1023 /**< Max threshold limit in fixed point format */ #define RTE_RED_WQ_LOG2_MIN 1 /**< Min inverse filter weight value */ #define RTE_RED_WQ_LOG2_MAX 12 /**< Max inverse filter weight value */ #define RTE_RED_MAXP_INV_MIN 1 /**< Min inverse mark probability value */ diff --git a/test/test/test_red.c b/test/test/test_red.c index 348075d..70e8cfe 100644 --- a/test/test/test_red.c +++ b/test/test/test_red.c @@ -653,14 +653,14 @@ static enum test_result func_test2(struct test_config *tcfg) /** * Test F3: functional test 3 */ -static uint32_t ft3_tlevel[] = {1022}; +static uint32_t ft3_tlevel[] = {RTE_RED_MAX_TH_MAX-1}; static struct test_rte_red_config ft3_tconfig = { .rconfig = ft_wrconfig, .num_cfg = RTE_DIM(ft_wrconfig), .wq_log2 = ft_wq_log2, .min_th = 32, - .max_th = 1023, + .max_th = RTE_RED_MAX_TH_MAX, .maxp_inv = ft_maxp_inv, }; @@ -766,14 +766,14 @@ static enum test_result func_test3(struct test_config *tcfg) /** * Test F4: functional test 4 */ -static uint32_t ft4_tlevel[] = {1022}; +static uint32_t ft4_tlevel[] = {RTE_RED_MAX_TH_MAX-1}; static uint8_t ft4_wq_log2[] = {11}; static struct test_rte_red_config ft4_tconfig = { .rconfig = ft_wrconfig, .num_cfg = RTE_DIM(ft_wrconfig), .min_th = 32, - .max_th = 1023, + .max_th = RTE_RED_MAX_TH_MAX, .wq_log2 = ft4_wq_log2, .maxp_inv = ft_maxp_inv, }; @@ -1048,7 +1048,7 @@ static enum test_result func_test5(struct test_config *tcfg) /** * Test F6: functional test 6 */ -static uint32_t ft6_tlevel[] = {1022}; +static uint32_t ft6_tlevel[] = {RTE_RED_MAX_TH_MAX-1}; static uint8_t ft6_wq_log2[] = {9, 8}; static uint8_t ft6_maxp_inv[] = {10, 20}; static struct rte_red_config ft6_config[2]; @@ -1059,7 +1059,7 @@ static struct test_rte_red_config ft6_tconfig = { .rconfig = ft6_config, .num_cfg = RTE_DIM(ft6_config), .min_th = 32, - .max_th = 1023, + .max_th = RTE_RED_MAX_TH_MAX, .wq_log2 = ft6_wq_log2, .maxp_inv = ft6_maxp_inv, }; @@ -1547,7 +1547,7 @@ static uint32_t ovfl_qconfig[] = {0, 0, 1, 1}; static uint32_t ovfl_q[] ={0}; static uint32_t ovfl_dropped[] ={0}; static uint32_t ovfl_enqueued[] ={0}; -static uint32_t ovfl_tlevel[] = {1023}; +static uint32_t ovfl_tlevel[] = {RTE_RED_MAX_TH_MAX}; static uint8_t ovfl_wq_log2[] = {12}; static struct test_rte_red_config ovfl_tconfig = { @@ -1555,7 +1555,7 @@ static struct test_rte_red_config ovfl_tconfig = { .num_cfg = RTE_DIM(ovfl_wrconfig), .wq_log2 = ovfl_wq_log2, .min_th = 32, - .max_th = 1023, + .max_th = RTE_RED_MAX_TH_MAX, .maxp_inv = ovfl_maxp_inv, }; @@ -1595,10 +1595,10 @@ static void ovfl_check_avg(uint32_t avg) } static struct test_config ovfl_test1_config = { - .ifname = "queue avergage overflow test interface", + .ifname = "queue average overflow test interface", .msg = "overflow test 1 : use one RED configuration,\n" " increase average queue size to target level,\n" - " check maximum number of bits requirte_red to represent avg_s\n\n", + " check maximum number of bits required to represent avg_s\n\n", .htxt = "avg queue size " "wq_log2 " "fraction bits "