net/virtio-user: fix device type check
authorJianfeng Tan <jianfeng.tan@intel.com>
Fri, 21 Apr 2017 02:28:09 +0000 (02:28 +0000)
committerYuanhan Liu <yuanhan.liu@linux.intel.com>
Fri, 28 Apr 2017 05:01:22 +0000 (07:01 +0200)
commit2c2201fb0745d3d46be324fa86989224ea2f0d83
tree6ccb206b44f5f30e309cc706a6f27a4f4ee6e1ca
parent58d9fe4000ee918b1d7f0260191349dd2f13ef02
net/virtio-user: fix device type check

Segfault happens when using virtio-user after commit 7f0a669e7b04
("ethdev: add allocation helper for virtual drivers").

It's due to we use ethdev->device to recognize physical devices,
but after above commit, this field is also filled for virtual
devices. Then we obtain the wrong pci_dev pointer and accessing
its field when copying pci info results in segfault.

To fix it, we use hw->virtio_user_dev to differentiate physical
devices from virtual devices.

Fixes: 6a7c0dfcdf40 ("net/virtio: do not depend on PCI device of ethdev")

Signed-off-by: Jianfeng Tan <jianfeng.tan@intel.com>
Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
drivers/net/virtio/virtio_ethdev.c