> -----Original Message----- > From: Min Hu (Connor) <humi...@huawei.com> > + if ((strcmp(env_value, "run_pdump_server_tests") == 0)) { > + rc = pthread_create(&thread, NULL, &send_pkts, NULL); > + if (rc != 0) > + rte_panic("Cannot start send pkts thread\n"); > + } I think you still have not addressed the David comment on previous version of the patch. So , can you change this to something like below Option1) rc = pthread_create(&thread, NULL, &send_pkts, NULL); If ( rc ! = 0 ) { rte_panic("Cannot start send pkts thread : %s\n", strerror(rc)); } Or Option2) If ( pthread_create(&thread, NULL, &send_pkts, NULL) !=0 ) rte_panic("Cannot start send pkts thread\n"); Also, >> test: fix missing check for thread creation Change this subject line to "test/pdump: fix missing check for thread creation" Thanks, Reshma
- [dpdk-dev] [PATCH 0/2] fix missing check for thread creati... Min Hu (Connor)
- [dpdk-dev] [PATCH 2/2] test: fix missing check for th... Min Hu (Connor)
- [dpdk-dev] [PATCH 1/2] telemetry: fix missing check f... Min Hu (Connor)
- [dpdk-dev] [PATCH v2 0/2] fix missing check for threa... Min Hu (Connor)
- [dpdk-dev] [PATCH v2 2/2] test: fix missing check... Min Hu (Connor)
- [dpdk-dev] [PATCH v2 1/2] telemetry: fix missing ... Min Hu (Connor)
- Re: [dpdk-dev] [PATCH v2 1/2] telemetry: fix ... David Marchand
- Re: [dpdk-dev] [PATCH v2 1/2] telemetry: ... Min Hu (Connor)
- [dpdk-dev] [PATCH v3 0/2] fix missing check for threa... Min Hu (Connor)
- [dpdk-dev] [PATCH v3 2/2] test: fix missing check... Min Hu (Connor)
- Re: [dpdk-dev] [PATCH v3 2/2] test: fix missi... Pattan, Reshma
- Re: [dpdk-dev] [PATCH v3 2/2] test: fix m... Min Hu (Connor)
- Re: [dpdk-dev] [PATCH v3 2/2] test: ... Ferruh Yigit
- Re: [dpdk-dev] [PATCH v3 2/2] te... Min Hu (Connor)
- [dpdk-dev] [PATCH v3 1/2] telemetry: fix missing ... Min Hu (Connor)
- Re: [dpdk-dev] [PATCH v3 1/2] telemetry: fix ... David Marchand
- Re: [dpdk-dev] [PATCH v3 1/2] telemetry: ... Min Hu (Connor)
- Re: [dpdk-dev] [PATCH v3 1/2] telemetry: fix ... Power, Ciara
- Re: [dpdk-dev] [PATCH v3 1/2] telemetry: ... Min Hu (Connor)
- [dpdk-dev] [PATCH v4 0/2] fix missing check for threa... Min Hu (Connor)
- [dpdk-dev] [PATCH v4 2/2] test: fix missing check... Min Hu (Connor)