X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fptpclient%2Fptpclient.c;h=173451eedcbed171f602f1fd45834e1d02783cb0;hb=704512214d031e4e27f19b53c44464d9821ed1a1;hp=33b297e37a3c1bfe1e9285704c7dd3e2fa5f62fb;hpb=7a04a4f67dcafe4fb5232985d9f63d507334632b;p=dpdk.git diff --git a/examples/ptpclient/ptpclient.c b/examples/ptpclient/ptpclient.c index 33b297e37a..173451eedc 100644 --- a/examples/ptpclient/ptpclient.c +++ b/examples/ptpclient/ptpclient.c @@ -606,10 +606,6 @@ lcore_main(void) unsigned nb_rx; struct rte_mbuf *m; - /* - * Check that the port is on the same NUMA node as the polling thread - * for best performance. - */ printf("\nCore %u Waiting for SYNC packets. [Ctrl+C to quit]\n", rte_lcore_id()); @@ -788,5 +784,8 @@ main(int argc, char *argv[]) /* Call lcore_main on the main core only. */ lcore_main(); + /* clean up the EAL */ + rte_eal_cleanup(); + return 0; }