[dpdk-dev] How to debug packet sends to virtual functions

2014-01-31 Thread Mats Liljegren
I have a follow-up on this: ixgbe version 3.13.10-k ixgbevf version 2.7.12-k (These are what was provided by Ubuntu 13.10) I tried the following sequence on the host, before starting the guest: 1) sudo rmmod ixgbe 2) sudo modprobe ixgbe max_vfs=2 3) sudo ifconfig em1 up # This is the physical

[dpdk-dev] checking packet drop at NIC

2014-01-31 Thread Sharath
thank you Vladimir. On Fri, Jan 31, 2014 at 12:36 PM, Vladimir Medvedkin wrote: > Hi Sharath, > > In DPDK interrupts are disabled to eliminate the performance overhead. > Interrupts used only for link status change. So you can poll > rte_eth_stats_get and check struct rte_eth_stats for errors.

[dpdk-dev] checking packet drop at NIC

2014-01-31 Thread Vladimir Medvedkin
Hi Sharath, In DPDK interrupts are disabled to eliminate the performance overhead. Interrupts used only for link status change. So you can poll rte_eth_stats_get and check struct rte_eth_stats for errors. Regards, Vladimir 2014-01-31 Sharath > Hi Daniel & all, > > can anyone please let me

[dpdk-dev] [memnic PATCH] pmd: use memory barrier function instead of asm volatile

2014-01-31 Thread Olivier MATZ
Hi Hiroshi-san, On 01/30/2014 12:42 PM, Hiroshi Shimamoto wrote: >> Subject: [dpdk-dev] [memnic PATCH] pmd: use memory barrier function instead >> of asm volatile > > By the way, I was also asked to use rte atomic function > instead of cmpxchg asm statement. > My re-submitted version in dpdk-ovs