Commit d97ffe23 authored by Gavin Shan's avatar Gavin Shan Committed by Bjorn Helgaas

PCI: Fix return value from pci_user_{read,write}_config_*()

The PCI user-space config accessors pci_user_{read,write}_config_*() return
negative error numbers, which were introduced by commit 34e32072
("PCI: handle positive error codes").  That patch converted all positive
error numbers from platform-specific PCI config accessors to -EINVAL, which
means the callers don't know anything about the specific cause of the
failure.

The patch fixes the issue by converting the positive PCIBIOS_* error values
to generic negative error numbers with pcibios_err_to_errno().

[bhelgaas: changelog]
Signed-off-by: default avatarGavin Shan <gwshan@linux.vnet.ibm.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Acked-by: default avatarGreg Thelen <gthelen@google.com>
parent a43ae58c
...@@ -148,7 +148,7 @@ static noinline void pci_wait_cfg(struct pci_dev *dev) ...@@ -148,7 +148,7 @@ static noinline void pci_wait_cfg(struct pci_dev *dev)
int pci_user_read_config_##size \ int pci_user_read_config_##size \
(struct pci_dev *dev, int pos, type *val) \ (struct pci_dev *dev, int pos, type *val) \
{ \ { \
int ret = 0; \ int ret = PCIBIOS_SUCCESSFUL; \
u32 data = -1; \ u32 data = -1; \
if (PCI_##size##_BAD) \ if (PCI_##size##_BAD) \
return -EINVAL; \ return -EINVAL; \
...@@ -159,9 +159,7 @@ int pci_user_read_config_##size \ ...@@ -159,9 +159,7 @@ int pci_user_read_config_##size \
pos, sizeof(type), &data); \ pos, sizeof(type), &data); \
raw_spin_unlock_irq(&pci_lock); \ raw_spin_unlock_irq(&pci_lock); \
*val = (type)data; \ *val = (type)data; \
if (ret > 0) \ return pcibios_err_to_errno(ret); \
ret = -EINVAL; \
return ret; \
} \ } \
EXPORT_SYMBOL_GPL(pci_user_read_config_##size); EXPORT_SYMBOL_GPL(pci_user_read_config_##size);
...@@ -170,7 +168,7 @@ EXPORT_SYMBOL_GPL(pci_user_read_config_##size); ...@@ -170,7 +168,7 @@ EXPORT_SYMBOL_GPL(pci_user_read_config_##size);
int pci_user_write_config_##size \ int pci_user_write_config_##size \
(struct pci_dev *dev, int pos, type val) \ (struct pci_dev *dev, int pos, type val) \
{ \ { \
int ret = -EIO; \ int ret = PCIBIOS_SUCCESSFUL; \
if (PCI_##size##_BAD) \ if (PCI_##size##_BAD) \
return -EINVAL; \ return -EINVAL; \
raw_spin_lock_irq(&pci_lock); \ raw_spin_lock_irq(&pci_lock); \
...@@ -179,9 +177,7 @@ int pci_user_write_config_##size \ ...@@ -179,9 +177,7 @@ int pci_user_write_config_##size \
ret = dev->bus->ops->write(dev->bus, dev->devfn, \ ret = dev->bus->ops->write(dev->bus, dev->devfn, \
pos, sizeof(type), val); \ pos, sizeof(type), val); \
raw_spin_unlock_irq(&pci_lock); \ raw_spin_unlock_irq(&pci_lock); \
if (ret > 0) \ return pcibios_err_to_errno(ret); \
ret = -EINVAL; \
return ret; \
} \ } \
EXPORT_SYMBOL_GPL(pci_user_write_config_##size); EXPORT_SYMBOL_GPL(pci_user_write_config_##size);
......
...@@ -518,7 +518,7 @@ static inline int pcibios_err_to_errno(int err) ...@@ -518,7 +518,7 @@ static inline int pcibios_err_to_errno(int err)
case PCIBIOS_FUNC_NOT_SUPPORTED: case PCIBIOS_FUNC_NOT_SUPPORTED:
return -ENOENT; return -ENOENT;
case PCIBIOS_BAD_VENDOR_ID: case PCIBIOS_BAD_VENDOR_ID:
return -EINVAL; return -ENOTTY;
case PCIBIOS_DEVICE_NOT_FOUND: case PCIBIOS_DEVICE_NOT_FOUND:
return -ENODEV; return -ENODEV;
case PCIBIOS_BAD_REGISTER_NUMBER: case PCIBIOS_BAD_REGISTER_NUMBER:
...@@ -529,7 +529,7 @@ static inline int pcibios_err_to_errno(int err) ...@@ -529,7 +529,7 @@ static inline int pcibios_err_to_errno(int err)
return -ENOSPC; return -ENOSPC;
} }
return -ENOTTY; return -ERANGE;
} }
/* Low-level architecture-dependent routines */ /* Low-level architecture-dependent routines */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment