From: Omar Awaysa <omara@nvidia.com>
To: <dev@dpdk.org>
Cc: <thomas@monjalon.net>, <rasland@nvidia.com>,
Raja Zidane <rzidane@nvidia.com>, <stable@dpdk.org>
Subject: [PATCH v2] examples/link_status_interrupt: fix stats refresh rate
Date: Thu, 7 Jul 2022 08:22:34 +0000 [thread overview]
Message-ID: <20220707082234.2787-1-omara@nvidia.com> (raw)
In-Reply-To: <20220530093702.11745-1-rzidane@nvidia.com>
From: Raja Zidane <rzidane@nvidia.com>
TIMER_MILLISECOND is defined as the number of cpu cycles per millisecond,
current definition is correct for cores with frequency of 2GHZ, for cores
with different frequency, it caused different periods between refresh,
(i.e. the definition is about 14ms on ARM cores).
Use dpdk API to get CPU frequency, to define TIMER_MILLISECOND.
Fixes: af75078fece3 ("first public release")
Cc: stable@dpdk.org
Signed-off-by: Omar Awaysa <omara@nvidia.com>
---
v2: use rte_get_timer_hz instead of rte_get_tsc_hz
update initial timer value to be in seconds
---
---
examples/link_status_interrupt/main.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/examples/link_status_interrupt/main.c b/examples/link_status_interrupt/main.c
index 551f0524da..79dd7461fd 100644
--- a/examples/link_status_interrupt/main.c
+++ b/examples/link_status_interrupt/main.c
@@ -101,9 +101,10 @@ struct lsi_port_statistics {
struct lsi_port_statistics port_statistics[RTE_MAX_ETHPORTS];
/* A tsc-based timer responsible for triggering statistics printout */
-#define TIMER_MILLISECOND 2000000ULL /* around 1ms at 2 Ghz */
+#define TIMER_MILLISECOND (rte_get_timer_hz() / 1000)
#define MAX_TIMER_PERIOD 86400 /* 1 day max */
-static int64_t timer_period = 10 * TIMER_MILLISECOND * 1000; /* default period is 10 seconds */
+#define DEFAULT_TIMER_PERIOD 10UL /* default period is 10 seconds */
+static int64_t timer_period;
/* Print out statistics on packets dropped */
static void
@@ -370,6 +371,8 @@ lsi_parse_args(int argc, char **argv)
{NULL, 0, 0, 0}
};
+ timer_period = DEFAULT_TIMER_PERIOD * TIMER_MILLISECOND * 1000;
+
argvopt = argv;
while ((opt = getopt_long(argc, argvopt, "p:q:T:",
--
2.17.1
next prev parent reply other threads:[~2022-07-07 14:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-30 9:37 [PATCH] " Raja Zidane
2022-06-26 21:22 ` Thomas Monjalon
2022-07-07 8:22 ` Omar Awaysa [this message]
2022-07-08 14:47 ` [PATCH v2] " Thomas Monjalon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220707082234.2787-1-omara@nvidia.com \
--to=omara@nvidia.com \
--cc=dev@dpdk.org \
--cc=rasland@nvidia.com \
--cc=rzidane@nvidia.com \
--cc=stable@dpdk.org \
--cc=thomas@monjalon.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).