From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f53.google.com (mail-pa0-f53.google.com [209.85.220.53]) by dpdk.org (Postfix) with ESMTP id 7C2F3568B for ; Mon, 11 May 2015 19:07:50 +0200 (CEST) Received: by pacwv17 with SMTP id wv17so114628028pac.0 for ; Mon, 11 May 2015 10:07:49 -0700 (PDT) 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:in-reply-to :references; bh=aAQJn4I2QDno/H8c0Va8SmPANwJih5KubtH08mVAMpM=; b=l8QnTWUJQ8SxA308I4nvSMJAt7MUlDuc/B6axUN4wtj2wsMQxJ3SaPrvT2ZLeL/nee Bt/TmoiBK0ENtCdFxvO++/qRoVz+3uyRllGfX09l+fkhE7uSTgZ3VFQwvFm/7gcbljEM zFcKo1ENYXy5xiKZcRMlh90UV2gu3NZ76yUJSBxDAMaosZqCiz9olsArpxTHUXZdWgsD 2T8UsRvBy8Oa4QHhPiyNghxJjkWSRIi9taCZVIQBc0aiGCLyNYXMc6opA8cbyhFx0jjd SH6J6RKGPW+lWBy/Ijios+BO2LOBLrhcP97sAF4bFauLKchurXojuXIl9PNib1E0rd3X 2Xlw== X-Gm-Message-State: ALoCoQkW9Yw0Id68KmR+STaYjm0qKg79/K0A/XPN0JKPod8vTmnBB6Ag48T2NszdzmtxUJJ1+zJb X-Received: by 10.70.92.193 with SMTP id co1mr20541014pdb.7.1431364069796; Mon, 11 May 2015 10:07:49 -0700 (PDT) Received: from urahara.home.lan (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by mx.google.com with ESMTPSA id hv7sm13650018pdb.86.2015.05.11.10.07.48 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 11 May 2015 10:07:48 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Date: Mon, 11 May 2015 10:07:46 -0700 Message-Id: <1431364071-27298-2-git-send-email-stephen@networkplumber.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1431364071-27298-1-git-send-email-stephen@networkplumber.org> References: <1431364071-27298-1-git-send-email-stephen@networkplumber.org> Cc: Stephen Hemminger Subject: [dpdk-dev] [PATCH 1/6] rte_sched: make RED optional at runtime 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: Mon, 11 May 2015 17:07:51 -0000 From: Stephen Hemminger Want to be able to build with RTE_SCHED_RED enabled but allow disabling RED on a per-queue basis at runtime. RED is disabled unless min/max thresholds set. Signed-off-by: Stephen Hemmminger --- lib/librte_sched/rte_sched.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/librte_sched/rte_sched.c b/lib/librte_sched/rte_sched.c index 95dee27..3b5acd1 100644 --- a/lib/librte_sched/rte_sched.c +++ b/lib/librte_sched/rte_sched.c @@ -636,6 +636,12 @@ rte_sched_port_config(struct rte_sched_port_params *params) uint32_t j; for (j = 0; j < e_RTE_METER_COLORS; j++) { + /* if min/max are both zero, then RED is disabled */ + if ((params->red_params[i][j].min_th | + params->red_params[i][j].max_th) == 0) { + continue; + } + if (rte_red_config_init(&port->red_config[i][j], params->red_params[i][j].wq_log2, params->red_params[i][j].min_th, @@ -1069,6 +1075,9 @@ rte_sched_port_red_drop(struct rte_sched_port *port, struct rte_mbuf *pkt, uint3 color = rte_sched_port_pkt_read_color(pkt); red_cfg = &port->red_config[tc_index][color]; + if ((red_cfg->min_th | red_cfg->max_th) == 0) + return 0; + qe = port->queue_extra + qindex; red = &qe->red; -- 2.1.4