[PATCH v7 7/8] app/test-pmd: add pdump initialization uninitialization
From: Reshma Pattan <hidden>
Date: 2016-06-09 16:10:42
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Reshma Pattan <hidden>
Date: 2016-06-09 16:10:42
Subsystem:
the rest · Maintainer:
Linus Torvalds
Call rte_pdump_init and rte_pdump_uninit for packet capturing initialization and uninitialization. Signed-off-by: Reshma Pattan <redacted> --- app/test-pmd/testpmd.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
index dd6b046..f6089fa 100644
--- a/app/test-pmd/testpmd.c
+++ b/app/test-pmd/testpmd.c@@ -76,6 +76,7 @@ #ifdef RTE_LIBRTE_PMD_XENVIRT #include <rte_eth_xenvirt.h> #endif +#include <rte_pdump.h> #include "testpmd.h"
@@ -2029,6 +2030,8 @@ signal_handler(int signum) if (signum == SIGINT || signum == SIGTERM) { printf("\nSignal %d received, preparing to exit...\n", signum); + /* uninitialize packet capture framework */ + rte_pdump_uninit(); force_quit(); /* exit with the expected status */ signal(signum, SIG_DFL);
@@ -2049,6 +2052,9 @@ main(int argc, char** argv) if (diag < 0) rte_panic("Cannot init EAL\n"); + /* initialize packet capture framework */ + rte_pdump_init(); + nb_ports = (portid_t) rte_eth_dev_count(); if (nb_ports == 0) RTE_LOG(WARNING, EAL, "No probed ethernet devices\n");
--
2.5.0