From mboxrd@z Thu Jan 1 00:00:00 1970 From: wei wang Subject: Re: [dpdk-users] ixgbe drop all the packet Date: Fri, 2 Sep 2016 18:16:08 +0800 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: Thomas Monjalon To: users@dpdk.org, dev@dpdk.org Return-path: In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The issue can be reproduced with example program l2fwd by modifying it to sleep 1 second before launching thread. code like this: .... check_all_ports_link_status(nb_ports, l2fwd_enabled_port_mask); sleep(1); /* launch per-lcore init on every lcore */ rte_eal_mp_remote_launch(l2fwd_launch_one_lcore, NULL, CALL_MASTER); RTE_LCORE_FOREACH_SLAVE(lcore_id) { if (rte_eal_wait_lcore(lcore_id) < 0) return -1; } ....