eal/bsd: fix read on PCI configuration space
authorTiwei Bie <tiwei.bie@intel.com>
Sun, 7 May 2017 13:33:34 +0000 (13:33 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 10 May 2017 13:57:49 +0000 (15:57 +0200)
commitf94c5c9648cd32a90448afa87ef81ab07fb26a42
treeaaa4fd968ffb595b5382ffbecef8c939b8bcc45d
parent3a6a04ec794465c786f789522d733dfa88451a18
eal/bsd: fix read on PCI configuration space

Some drivers (such as virtio) may need to read more than 4 bytes
data from PCI configuration space via rte_eal_pci_read_config().
But it will return with an error on FreeBSD when the expected
data length is bigger than the size of pi.pi_data whose type is
u_int32_t. This patch removes this limitation.

Fixes: 632b2d1deeed ("eal: provide functions to access PCI config")
Cc: stable@dpdk.org
Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_eal/bsdapp/eal/eal_pci.c