[dpdk-dev] rte_eth_tx_burst() hangs because of nofreedescriptors

2016-10-25 Thread yingzhi
we correctly free those fragmented packets if rte_eth_tx_burst() didn't sent out them so we need to manually free? Thanks -- Original -- From: "Zhang, Helin";; Date: Tue, Oct 25, 2016 09:05 AM To: "yingzhi"; Cc: "dev at dpdk.org&quo

[dpdk-dev] rte_kni_tx_burst() hangs because of no freedescriptors

2016-10-24 Thread yingzhi
ect, need to do some tests later today or tomorrow. Thanks -- Original -- From: "Zhang, Helin";; Date: Mon, Oct 24, 2016 11:33 AM To: "yingzhi"; Cc: "dev at dpdk.org"; Subject: RE: [dpdk-dev] rte_kni_tx_burst() hangs becaus

[dpdk-dev] rte_kni_tx_burst() hangs because of no free descriptors

2016-10-23 Thread yingzhi
? Hi Experts, Background: We are using DPDK to develop a LoadBalancer following below logic: When a new packet is received: 1. if the dst_addr is management IP, forward to KNI. 2. if the dst_addr is in VIP list, select backend and forward(modify dst mac address)

[dpdk-dev] [dpdk-users] How to printout PMD logs to console

2016-10-18 Thread yingzhi
Hi All, I'm doing app debug and would like to see device PMD logs, e.g. dpdk/drivers/net/ixgbe/ixgbe_rxtx.c:1703 PMD_RX_LOG(...) Currently I can only see RTE logs from console. Any comments is appreciated Thanks