From 8210ec2572ae887f76a3dff1e44f2c253d8e5616 Mon Sep 17 00:00:00 2001 From: Pablo de Lara Date: Fri, 27 Feb 2015 11:18:39 +0000 Subject: [PATCH] app/testpmd: stop forwarding when quitting When user quits testpmd, and there is traffic being forwarded, that may produce a segmentation fault, due to ports being closed, while they are still transmitting packets. This patch prevents the issue from happening, by stopping packet forwarding before closing the ports. Signed-off-by: Pablo de Lara --- app/test-pmd/testpmd.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index e38c441c81..4828354bf4 100644 --- a/app/test-pmd/testpmd.c +++ b/app/test-pmd/testpmd.c @@ -1633,6 +1633,9 @@ pmd_test_exit(void) { portid_t pt_id; + if (test_done == 0) + stop_packet_forwarding(); + FOREACH_PORT(pt_id, ports) { printf("Stopping port %d...", pt_id); fflush(stdout); -- 2.20.1