v3: - fixed several comments from Thomas regarding to eth_dev - updated the release note and nic features matrix
v2: - fixed virtio 1.0 multiple process support - fixed the case when few virtio net devices are managed by DPDK while few others are handled by Linux kernel. This patch series fixes few crash issues regarding to multiple process model. In my limited fuzzy test, now it works for both virtio 0.95 and 1.0, as well as for the case some virtio-net devices are managed by kernel device while some others are managed by DPDK. --- Maintaining the multiple process support is not an easy task -- you have to be very mindful while coding -- what kind of stuff should and should not be in shared memory. Otherwise, it's very likely the multiple process model will be broken. A typical example is the ops pointer, a pointer to a set of function pointers. Normally, it's a pointer stored in a read-only data section of the application: static const struct virtio_pci_ops legacy_ops = { ..., } The pointer, of course, may vary in different process space. If, however, we store the pointer into shared memory, we could only have one value for it. Setting it from process A and accessing it from process B would likely lead to an illegal memory access. As a result, crash happens. The fix is to keep those addresses locally, in a new struct, virtio_hw_internal. By that, each process maintains it's own version of the pointer (from its own process space). Thus, everything would work as expected. --- Yuanhan Liu (6): ethdev: fix port data mismatched in multiple process model net/virtio: fix wrong Rx/Tx method for secondary process net/virtio: store PCI operators pointer locally net/virtio: store IO port info locally net/virtio: fix multiple process support net/virtio: remove dead structure field doc/guides/nics/features/virtio.ini | 1 + doc/guides/rel_notes/release_17_02.rst | 5 ++ drivers/net/virtio/virtio_ethdev.c | 69 +++++++++++++++++++++++++--- drivers/net/virtio/virtio_pci.c | 81 +++++++++++++++++---------------- drivers/net/virtio/virtio_pci.h | 25 ++++++++-- drivers/net/virtio/virtio_user_ethdev.c | 5 +- drivers/net/virtio/virtqueue.h | 2 +- lib/librte_ether/rte_ethdev.c | 77 +++++++++++++++++++++++++++---- 8 files changed, 204 insertions(+), 61 deletions(-) -- 1.9.0