]> git.droids-corp.org - dpdk.git/commitdiff
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 40641cad4414ad59bb5338193a834f9c218f62e2..d09f8ee5a6253dbe577307b2931179222de6f9d2 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 8252fa6a0edb5017a0fc4eddec961bd9cfd45c49..f0d6d81c00ce565643991b34a07c569a288730db 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);