bus/pci: harmonize return value of config read
authorLuca Boccassi <bluca@debian.org>
Tue, 28 Aug 2018 10:12:39 +0000 (11:12 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 28 Oct 2018 23:32:14 +0000 (00:32 +0100)
On Linux, rte_pci_read_config on success returns the number of read
bytes, but on BSD it returns 0.
Document the return values, and have BSD behave as Linux does.

At least one case (bnx2x PMD) treats 0 as an error, so the change
makes sense also for that.

Signed-off-by: Luca Boccassi <bluca@debian.org>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/bus/pci/bsd/pci.c
drivers/bus/pci/rte_bus_pci.h

index 40641ca..d09f8ee 100644 (file)
@@ -441,6 +441,8 @@ int rte_pci_read_config(const struct rte_pci_device *dev,
 {
        int fd = -1;
        int size;
+       /* Copy Linux implementation's behaviour */
+       const int return_len = len;
        struct pci_io pi = {
                .pi_sel = {
                        .pc_domain = dev->addr.domain,
@@ -471,7 +473,7 @@ int rte_pci_read_config(const struct rte_pci_device *dev,
        }
        close(fd);
 
-       return 0;
+       return return_len;
 
  error:
        if (fd >= 0)
index 8252fa6..f0d6d81 100644 (file)
@@ -223,6 +223,8 @@ void rte_pci_unregister(struct rte_pci_driver *driver);
  *   The length of the data buffer.
  * @param offset
  *   The offset into PCI config space
+ * @return
+ *  Number of bytes read on success, negative on error.
  */
 int rte_pci_read_config(const struct rte_pci_device *device,
                void *buf, size_t len, off_t offset);