bus/pci: fix interrupt handler type
authorZhiyong Yang <zhiyong.yang@intel.com>
Wed, 10 Jan 2018 02:32:26 +0000 (10:32 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 12 Jan 2018 00:04:22 +0000 (01:04 +0100)
commit6c7001480ac6356ff0a4995f3ed495ed9c866061
tree3df7b8c281bc9347f2c99b079dc70d16b1058969
parent3b792ed9c84003ffc78f0dbdd85ba9780d3b193d
bus/pci: fix interrupt handler type

For virtio legacy device, testpmd startup fails when using uio_pci_generic.

The issue is caused by invoking the function pci_ioport_map. The correct
value of intr_handle.type is already set before calling it, we should avoid
overwriting the default value "RTE_INTR_HANDLE_UNKNOWN" in this function.
Besides, the removal has no harm to other cases because it is set to 0 by a
memset on the whole struct during allocation in the function pci_scan_one.

Such assignments are removed in the meanwhile in pci_uio_map_resource(),
pci_vfio_map_resource_primary() and pci_vfio_map_resource_secondary() in
order to keep consistencies and avoid future questions.

Fixes: 756ce64b1ecd ("eal: introduce PCI ioport API")
Cc: stable@dpdk.org
Signed-off-by: Zhiyong Yang <zhiyong.yang@intel.com>
Reviewed-by: Thomas Monjalon <thomas@monjalon.net>
drivers/bus/pci/linux/pci.c
drivers/bus/pci/linux/pci_vfio.c
drivers/bus/pci/pci_common_uio.c