[dpdk-dev] [PATCH] vmxnet3: fill in imissed stat with pktsRxOutOfBuf

2018-04-07 Thread Jon DeVree
This counter comes from a "hardware" register of the vmxnet3 device and seems to behave like the MPC (Missed Packet Count) register of the Intel NICs. So I think this data belongs in the imissed field rather than the rx_nombuf field. Signed-off-by: Jon DeVree --- drivers/n

[dpdk-dev] DPDK & ASLR

2016-10-26 Thread Jon DeVree
On Tue, Oct 25, 2016 at 15:18:03 -0700, Samir Shah wrote: > Does ASLR need to be turned off system-wide, or DPDK-processes wide? Could > we use setarch/personality to disable ASLR for just the DPDK process and > leave it enabled for the rest of the system? Any experience to say if that > would work

[dpdk-dev] [PATCH] igb/e1000: Copy PCI device info after the rte_eal_process_type() check

2015-11-23 Thread Jon DeVree
This fixes a bug added to these two drivers by eeefe73 (drivers: copy PCI device info to ethdev data) which causes the pci info seen by the primary process to become invalidated by secondary process startup. This call was added after the process type check in the other drivers. Signed-off-by: Jon