Commit 1285762c authored by Heiner Kallweit's avatar Heiner Kallweit Committed by Bjorn Helgaas

PCI/VPD: Remove pci_vpd_size() old_size argument

vpd->len is initialized to PCI_VPD_MAX_SIZE, and if a quirk is used to set
a specific VPD size, then pci_vpd_set_size() sets vpd->valid, resulting in
pci_vpd_size() not being called. Therefore we can remove the old_size
argument. Note that we don't have to check off < PCI_VPD_MAX_SIZE because
that's implicitly done by pci_read_vpd().

Link: https://lore.kernel.org/r/ede36c16-5335-6867-43a1-293641348430@gmail.comSigned-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 5fe204ea
...@@ -68,14 +68,13 @@ EXPORT_SYMBOL(pci_write_vpd); ...@@ -68,14 +68,13 @@ EXPORT_SYMBOL(pci_write_vpd);
/** /**
* pci_vpd_size - determine actual size of Vital Product Data * pci_vpd_size - determine actual size of Vital Product Data
* @dev: pci device struct * @dev: pci device struct
* @old_size: current assumed size, also maximum allowed size
*/ */
static size_t pci_vpd_size(struct pci_dev *dev, size_t old_size) static size_t pci_vpd_size(struct pci_dev *dev)
{ {
size_t off = 0, size; size_t off = 0, size;
unsigned char tag, header[1+2]; /* 1 byte tag, 2 bytes length */ unsigned char tag, header[1+2]; /* 1 byte tag, 2 bytes length */
while (off < old_size && pci_read_vpd(dev, off, 1, header) == 1) { while (pci_read_vpd(dev, off, 1, header) == 1) {
size = 0; size = 0;
if (off == 0 && (header[0] == 0x00 || header[0] == 0xff)) if (off == 0 && (header[0] == 0x00 || header[0] == 0xff))
...@@ -172,7 +171,7 @@ static ssize_t pci_vpd_read(struct pci_dev *dev, loff_t pos, size_t count, ...@@ -172,7 +171,7 @@ static ssize_t pci_vpd_read(struct pci_dev *dev, loff_t pos, size_t count,
if (!vpd->valid) { if (!vpd->valid) {
vpd->valid = 1; vpd->valid = 1;
vpd->len = pci_vpd_size(dev, vpd->len); vpd->len = pci_vpd_size(dev);
} }
if (vpd->len == 0) if (vpd->len == 0)
...@@ -239,7 +238,7 @@ static ssize_t pci_vpd_write(struct pci_dev *dev, loff_t pos, size_t count, ...@@ -239,7 +238,7 @@ static ssize_t pci_vpd_write(struct pci_dev *dev, loff_t pos, size_t count,
if (!vpd->valid) { if (!vpd->valid) {
vpd->valid = 1; vpd->valid = 1;
vpd->len = pci_vpd_size(dev, vpd->len); vpd->len = pci_vpd_size(dev);
} }
if (vpd->len == 0) if (vpd->len == 0)
...@@ -463,6 +462,7 @@ static void quirk_blacklist_vpd(struct pci_dev *dev) ...@@ -463,6 +462,7 @@ static void quirk_blacklist_vpd(struct pci_dev *dev)
{ {
if (dev->vpd) { if (dev->vpd) {
dev->vpd->len = 0; dev->vpd->len = 0;
dev->vpd->valid = 1;
pci_warn(dev, FW_BUG "disabling VPD access (can't determine size of non-standard VPD format)\n"); pci_warn(dev, FW_BUG "disabling VPD access (can't determine size of non-standard VPD format)\n");
} }
} }
......
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