From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C5FF2C7618B for ; Wed, 24 Jul 2019 12:27:13 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 86B5921BF6 for ; Wed, 24 Jul 2019 12:27:13 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 86B5921BF6 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C9CA21C1D5; Wed, 24 Jul 2019 14:27:12 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 916D21C1D0 for ; Wed, 24 Jul 2019 14:27:10 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jul 2019 05:27:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,302,1559545200"; d="scan'208";a="177641784" Received: from silpixa00381635.ir.intel.com (HELO silpixa00381635.ger.corp.intel.com) ([10.237.223.4]) by FMSMGA003.fm.intel.com with ESMTP; 24 Jul 2019 05:27:08 -0700 From: Jasvinder Singh To: dev@dpdk.org Cc: cristian.dumitrescu@intel.com Date: Wed, 24 Jul 2019 13:27:19 +0100 Message-Id: <20190724122719.103271-1-jasvinder.singh@intel.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] examples/qos_sched: add more tc to red configuration 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" Add RED configuration to more traffic classes in app configuration files. Signed-off-by: Jasvinder Singh --- examples/qos_sched/profile.cfg | 20 ++++++++++++++++++++ examples/qos_sched/profile_ov.cfg | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/examples/qos_sched/profile.cfg b/examples/qos_sched/profile.cfg index df7c6d1d8..010a13715 100644 --- a/examples/qos_sched/profile.cfg +++ b/examples/qos_sched/profile.cfg @@ -145,3 +145,23 @@ tc 8 wred min = 48 40 32 tc 8 wred max = 64 64 64 tc 8 wred inv prob = 10 10 10 tc 8 wred weight = 9 9 9 + +tc 9 wred min = 48 40 32 +tc 9 wred max = 64 64 64 +tc 9 wred inv prob = 10 10 10 +tc 9 wred weight = 9 9 9 + +tc 10 wred min = 48 40 32 +tc 10 wred max = 64 64 64 +tc 10 wred inv prob = 10 10 10 +tc 10 wred weight = 9 9 9 + +tc 11 wred min = 48 40 32 +tc 11 wred max = 64 64 64 +tc 11 wred inv prob = 10 10 10 +tc 11 wred weight = 9 9 9 + +tc 12 wred min = 48 40 32 +tc 12 wred max = 64 64 64 +tc 12 wred inv prob = 10 10 10 +tc 12 wred weight = 9 9 9 diff --git a/examples/qos_sched/profile_ov.cfg b/examples/qos_sched/profile_ov.cfg index c0b7b3c3d..f49319115 100644 --- a/examples/qos_sched/profile_ov.cfg +++ b/examples/qos_sched/profile_ov.cfg @@ -128,3 +128,23 @@ tc 8 wred min = 48 40 32 tc 8 wred max = 64 64 64 tc 8 wred inv prob = 10 10 10 tc 8 wred weight = 9 9 9 + +tc 9 wred min = 48 40 32 +tc 9 wred max = 64 64 64 +tc 9 wred inv prob = 10 10 10 +tc 9 wred weight = 9 9 9 + +tc 10 wred min = 48 40 32 +tc 10 wred max = 64 64 64 +tc 10 wred inv prob = 10 10 10 +tc 10 wred weight = 9 9 9 + +tc 11 wred min = 48 40 32 +tc 11 wred max = 64 64 64 +tc 11 wred inv prob = 10 10 10 +tc 11 wred weight = 9 9 9 + +tc 12 wred min = 48 40 32 +tc 12 wred max = 64 64 64 +tc 12 wred inv prob = 10 10 10 +tc 12 wred weight = 9 9 9 -- 2.21.0