From: Ibtisam Tariq <ibtisam.tariq@emumba.com>
To: declan.doherty@intel.com
Cc: dev@dpdk.org, Ibtisam Tariq <ibtisam.tariq@emumba.com>
Subject: [dpdk-dev] [PATCH 1/2] examples/l2fwd-jobstats: Free resources on exit
Date: Wed, 22 Jul 2020 12:50:25 +0000 [thread overview]
Message-ID: <20200722125026.2595-1-ibtisam.tariq@emumba.com> (raw)
When exiting the application, resources should be cleared.
Signed-off-by: Ibtisam Tariq <ibtisam.tariq@emumba.com>
---
examples/l2fwd-jobstats/main.c | 49 +++++++++++++++++++++++++++++++++-
1 file changed, 48 insertions(+), 1 deletion(-)
diff --git a/examples/l2fwd-jobstats/main.c b/examples/l2fwd-jobstats/main.c
index 47a3b0976..4f29f40ea 100644
--- a/examples/l2fwd-jobstats/main.c
+++ b/examples/l2fwd-jobstats/main.c
@@ -8,6 +8,7 @@
#include <stdint.h>
#include <ctype.h>
#include <getopt.h>
+#include <signal.h>
#include <rte_common.h>
#include <rte_log.h>
@@ -36,6 +37,8 @@
#include <rte_alarm.h>
#include <rte_pause.h>
+static volatile bool force_quit;
+
#define RTE_LOGTYPE_L2FWD RTE_LOGTYPE_USER1
#define NB_MBUF 8192
@@ -493,7 +496,7 @@ l2fwd_main_loop(void)
rte_jobstats_init(&qconf->idle_job, "idle", 0, 0, 0, 0);
- for (;;) {
+ while (!force_quit) {
rte_spinlock_lock(&qconf->lock);
do {
@@ -508,6 +511,9 @@ l2fwd_main_loop(void)
uint64_t repeats = 0;
do {
+ if (force_quit)
+ break;
+
uint8_t i;
uint64_t now = rte_get_timer_cycles();
@@ -523,6 +529,9 @@ l2fwd_main_loop(void)
} while (!need_manage);
+ if (force_quit)
+ break;
+
if (likely(repeats != 1))
rte_jobstats_finish(&qconf->idle_job, qconf->idle_job.target);
else
@@ -693,8 +702,12 @@ check_all_ports_link_status(uint32_t port_mask)
printf("\nChecking link status");
fflush(stdout);
for (count = 0; count <= MAX_CHECK_TIME; count++) {
+ if (force_quit)
+ return;
all_ports_up = 1;
RTE_ETH_FOREACH_DEV(portid) {
+ if (force_quit)
+ return;
if ((port_mask & (1 << portid)) == 0)
continue;
memset(&link, 0, sizeof(link));
@@ -742,6 +755,27 @@ check_all_ports_link_status(uint32_t port_mask)
}
}
+static void
+stop_and_close_eth_dev(uint16_t port_id)
+{
+ RTE_ETH_FOREACH_DEV(port_id) {
+ printf("Closing port %d...", port_id);
+ rte_eth_dev_stop(port_id);
+ rte_eth_dev_close(port_id);
+ printf(" Done\n");
+ }
+}
+
+static void
+signal_handler(int signum)
+{
+ if (signum == SIGINT || signum == SIGTERM) {
+ printf("\n\nSignal %d received, preparing to exit...\n",
+ signum);
+ force_quit = true;
+ }
+}
+
int
main(int argc, char **argv)
{
@@ -762,6 +796,10 @@ main(int argc, char **argv)
argc -= ret;
argv += ret;
+ force_quit = false;
+ signal(SIGINT, signal_handler);
+ signal(SIGTERM, signal_handler);
+
/* parse application arguments (after the EAL ones) */
ret = l2fwd_parse_args(argc, argv);
if (ret < 0)
@@ -960,6 +998,12 @@ main(int argc, char **argv)
}
check_all_ports_link_status(l2fwd_enabled_port_mask);
+ if (force_quit) {
+ stop_and_close_eth_dev(portid);
+ rte_eal_cleanup();
+ printf("Bye...\n");
+ return 0;
+ }
drain_tsc = (hz + US_PER_S - 1) / US_PER_S * BURST_TX_DRAIN_US;
@@ -1028,5 +1072,8 @@ main(int argc, char **argv)
return -1;
}
+ stop_and_close_eth_dev(portid);
+ rte_eal_cleanup();
+ printf("Bye...\n");
return 0;
}
--
2.17.1
next reply other threads:[~2020-07-22 12:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-22 12:50 Ibtisam Tariq [this message]
2020-07-22 12:50 ` [dpdk-dev] [PATCH 2/2] examples/l2fwd-crypto: " Ibtisam Tariq
2020-07-30 21:15 ` Thomas Monjalon
2020-11-22 18:05 ` Thomas Monjalon
2020-11-23 15:44 ` Zhang, Roy Fan
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=20200722125026.2595-1-ibtisam.tariq@emumba.com \
--to=ibtisam.tariq@emumba.com \
--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).