From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiayu Hu Subject: [PATCH v2] app/testpmd: fix exit without freeing resources Date: Fri, 28 Apr 2017 09:32:50 +0800 Message-ID: <1493343170-110462-1-git-send-email-jiayu.hu@intel.com> References: <1493256770-15331-1-git-send-email-jiayu.hu@intel.com> Cc: jingjing.wu@intel.com, stable@dpdk.org, jianfeng.tan@intel.com, Jiayu Hu To: dev@dpdk.org Return-path: In-Reply-To: <1493256770-15331-1-git-send-email-jiayu.hu@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" When testpmd exists, it frees the acquired resources (e.g. stop ports). However, when we terminate it by Ctrl-d, testpmd exists directly without releasing the resources. In this patch, we fix this exit issue. Fixes:af75078fece3 ("first public release") Cc: stable@dpdk.org Signed-off-by: Jiayu Hu --- changes in v2: - Change title and add the bug release app/test-pmd/testpmd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index 3a57348..94cefc0 100644 --- a/app/test-pmd/testpmd.c +++ b/app/test-pmd/testpmd.c @@ -2289,6 +2289,7 @@ main(int argc, char** argv) start_packet_forwarding(0); } prompt(); + pmd_test_exit(); } else #endif { -- 2.7.4