From: Thomas Monjalon <thomas@monjalon.net>
To: dev@dpdk.org
Cc: Declan Doherty <declan.doherty@intel.com>
Subject: [dpdk-dev] [PATCH] app/crypto-perf: use common macros for min/max
Date: Wed, 19 Feb 2020 11:38:48 +0100 [thread overview]
Message-ID: <20200219103848.2259134-1-thomas@monjalon.net> (raw)
The macros RTE_MIN and RTE_MAX can be used in DPDK applications.
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
app/test-crypto-perf/cperf_test_latency.c | 19 ++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)
diff --git a/app/test-crypto-perf/cperf_test_latency.c b/app/test-crypto-perf/cperf_test_latency.c
index 62478a2df5..0e4d0e1538 100644
--- a/app/test-crypto-perf/cperf_test_latency.c
+++ b/app/test-crypto-perf/cperf_test_latency.c
@@ -40,9 +40,6 @@ struct priv_op_data {
struct cperf_op_result *result;
};
-#define max(a, b) (a > b ? (uint64_t)a : (uint64_t)b)
-#define min(a, b) (a < b ? (uint64_t)a : (uint64_t)b)
-
static void
cperf_latency_test_free(struct cperf_latency_ctx *ctx)
{
@@ -254,13 +251,13 @@ cperf_latency_test_runner(void *arg)
(void **)ops_processed, ops_deqd);
deqd_tot += ops_deqd;
- deqd_max = max(ops_deqd, deqd_max);
- deqd_min = min(ops_deqd, deqd_min);
+ deqd_max = RTE_MAX(ops_deqd, deqd_max);
+ deqd_min = RTE_MIN(ops_deqd, deqd_min);
}
enqd_tot += ops_enqd;
- enqd_max = max(ops_enqd, enqd_max);
- enqd_min = min(ops_enqd, enqd_min);
+ enqd_max = RTE_MAX(ops_enqd, enqd_max);
+ enqd_min = RTE_MIN(ops_enqd, enqd_min);
b_idx++;
}
@@ -284,15 +281,15 @@ cperf_latency_test_runner(void *arg)
(void **)ops_processed, ops_deqd);
deqd_tot += ops_deqd;
- deqd_max = max(ops_deqd, deqd_max);
- deqd_min = min(ops_deqd, deqd_min);
+ deqd_max = RTE_MAX(ops_deqd, deqd_max);
+ deqd_min = RTE_MIN(ops_deqd, deqd_min);
}
}
for (i = 0; i < tsc_idx; i++) {
tsc_val = ctx->res[i].tsc_end - ctx->res[i].tsc_start;
- tsc_max = max(tsc_val, tsc_max);
- tsc_min = min(tsc_val, tsc_min);
+ tsc_max = RTE_MAX(tsc_val, tsc_max);
+ tsc_min = RTE_MIN(tsc_val, tsc_min);
tsc_tot += tsc_val;
}
--
2.25.0
next reply other threads:[~2020-02-19 10:39 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-19 10:38 Thomas Monjalon [this message]
2020-02-20 10:38 ` Akhil Goyal
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=20200219103848.2259134-1-thomas@monjalon.net \
--to=thomas@monjalon.net \
--cc=declan.doherty@intel.com \
--cc=dev@dpdk.org \
/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).