From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eelco Chaudron Subject: [PATCH] lib/librte_meter: fix divide by zero for RFC4115 meter Date: Fri, 1 Feb 2019 15:59:33 +0000 Message-ID: <154903677150.46295.18413598190427874662.stgit@dbuild> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: cristian.dumitrescu@intel.com Return-path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id B2C6C1B4DE for ; Fri, 1 Feb 2019 16:59:59 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" RFC 4115 allows a meter with either cir and/or eir configured. When only one is configured a divide by zero would occur. Fixes: 655796d2b5fb ("meter: support RFC4115 trTCM") Cc: echaudro@redhat.com Signed-off-by: Eelco Chaudron --- config/common_linuxapp | 4 ++-- lib/librte_meter/rte_meter.h | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/common_linuxapp b/config/common_linuxapp index 6c1c8d0f4..186323993 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -7,9 +7,9 @@ CONFIG_RTE_EXEC_ENV="linuxapp" CONFIG_RTE_EXEC_ENV_LINUXAPP=y CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=y -CONFIG_RTE_EAL_IGB_UIO=y +CONFIG_RTE_EAL_IGB_UIO=n CONFIG_RTE_EAL_VFIO=y -CONFIG_RTE_KNI_KMOD=y +CONFIG_RTE_KNI_KMOD=n CONFIG_RTE_LIBRTE_KNI=y CONFIG_RTE_LIBRTE_PMD_KNI=y CONFIG_RTE_LIBRTE_VHOST=y diff --git a/lib/librte_meter/rte_meter.h b/lib/librte_meter/rte_meter.h index 005e4eeee..56d85ecf0 100644 --- a/lib/librte_meter/rte_meter.h +++ b/lib/librte_meter/rte_meter.h @@ -597,8 +597,8 @@ rte_meter_trtcm_rfc4115_color_blind_check( /* Bucket update */ time_diff_tc = time - m->time_tc; time_diff_te = time - m->time_te; - n_periods_tc = time_diff_tc / p->cir_period; - n_periods_te = time_diff_te / p->eir_period; + n_periods_tc = p->cir_period != 0 ? time_diff_tc / p->cir_period : 0; + n_periods_te = p->eir_period != 0 ? time_diff_te / p->eir_period : 0; m->time_tc += n_periods_tc * p->cir_period; m->time_te += n_periods_te * p->eir_period; @@ -641,8 +641,8 @@ rte_meter_trtcm_rfc4115_color_aware_check( /* Bucket update */ time_diff_tc = time - m->time_tc; time_diff_te = time - m->time_te; - n_periods_tc = time_diff_tc / p->cir_period; - n_periods_te = time_diff_te / p->eir_period; + n_periods_tc = p->cir_period != 0 ? time_diff_tc / p->cir_period : 0; + n_periods_te = p->eir_period != 0 ? time_diff_te / p->eir_period : 0; m->time_tc += n_periods_tc * p->cir_period; m->time_te += n_periods_te * p->eir_period;