Commit 28ef241f authored by Keith Busch's avatar Keith Busch Committed by Bjorn Helgaas

PCI/AER: Use 32 bit PCI domain numbers

The Intel Volume Management Device (VMD) supports 32-bit domain numbers.
To accommodate this, use u32 instead of u16 to store domain numbers.

[bhelgaas: changelog]
Signed-off-by: default avatarKeith Busch <keith.busch@intel.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent d9c3d6ff
...@@ -41,12 +41,12 @@ struct aer_error_inj { ...@@ -41,12 +41,12 @@ struct aer_error_inj {
u32 header_log1; u32 header_log1;
u32 header_log2; u32 header_log2;
u32 header_log3; u32 header_log3;
u16 domain; u32 domain;
}; };
struct aer_error { struct aer_error {
struct list_head list; struct list_head list;
u16 domain; u32 domain;
unsigned int bus; unsigned int bus;
unsigned int devfn; unsigned int devfn;
int pos_cap_err; int pos_cap_err;
...@@ -74,7 +74,7 @@ static LIST_HEAD(pci_bus_ops_list); ...@@ -74,7 +74,7 @@ static LIST_HEAD(pci_bus_ops_list);
/* Protect einjected and pci_bus_ops_list */ /* Protect einjected and pci_bus_ops_list */
static DEFINE_SPINLOCK(inject_lock); static DEFINE_SPINLOCK(inject_lock);
static void aer_error_init(struct aer_error *err, u16 domain, static void aer_error_init(struct aer_error *err, u32 domain,
unsigned int bus, unsigned int devfn, unsigned int bus, unsigned int devfn,
int pos_cap_err) int pos_cap_err)
{ {
...@@ -86,7 +86,7 @@ static void aer_error_init(struct aer_error *err, u16 domain, ...@@ -86,7 +86,7 @@ static void aer_error_init(struct aer_error *err, u16 domain,
} }
/* inject_lock must be held before calling */ /* inject_lock must be held before calling */
static struct aer_error *__find_aer_error(u16 domain, unsigned int bus, static struct aer_error *__find_aer_error(u32 domain, unsigned int bus,
unsigned int devfn) unsigned int devfn)
{ {
struct aer_error *err; struct aer_error *err;
...@@ -106,7 +106,7 @@ static struct aer_error *__find_aer_error_by_dev(struct pci_dev *dev) ...@@ -106,7 +106,7 @@ static struct aer_error *__find_aer_error_by_dev(struct pci_dev *dev)
int domain = pci_domain_nr(dev->bus); int domain = pci_domain_nr(dev->bus);
if (domain < 0) if (domain < 0)
return NULL; return NULL;
return __find_aer_error((u16)domain, dev->bus->number, dev->devfn); return __find_aer_error(domain, dev->bus->number, dev->devfn);
} }
/* inject_lock must be held before calling */ /* inject_lock must be held before calling */
...@@ -196,7 +196,7 @@ static int pci_read_aer(struct pci_bus *bus, unsigned int devfn, int where, ...@@ -196,7 +196,7 @@ static int pci_read_aer(struct pci_bus *bus, unsigned int devfn, int where,
domain = pci_domain_nr(bus); domain = pci_domain_nr(bus);
if (domain < 0) if (domain < 0)
goto out; goto out;
err = __find_aer_error((u16)domain, bus->number, devfn); err = __find_aer_error(domain, bus->number, devfn);
if (!err) if (!err)
goto out; goto out;
...@@ -228,7 +228,7 @@ static int pci_write_aer(struct pci_bus *bus, unsigned int devfn, int where, ...@@ -228,7 +228,7 @@ static int pci_write_aer(struct pci_bus *bus, unsigned int devfn, int where,
domain = pci_domain_nr(bus); domain = pci_domain_nr(bus);
if (domain < 0) if (domain < 0)
goto out; goto out;
err = __find_aer_error((u16)domain, bus->number, devfn); err = __find_aer_error(domain, bus->number, devfn);
if (!err) if (!err)
goto out; goto out;
...@@ -329,7 +329,7 @@ static int aer_inject(struct aer_error_inj *einj) ...@@ -329,7 +329,7 @@ static int aer_inject(struct aer_error_inj *einj)
u32 sever, cor_mask, uncor_mask, cor_mask_orig = 0, uncor_mask_orig = 0; u32 sever, cor_mask, uncor_mask, cor_mask_orig = 0, uncor_mask_orig = 0;
int ret = 0; int ret = 0;
dev = pci_get_domain_bus_and_slot((int)einj->domain, einj->bus, devfn); dev = pci_get_domain_bus_and_slot(einj->domain, einj->bus, devfn);
if (!dev) if (!dev)
return -ENODEV; return -ENODEV;
rpdev = pcie_find_root_port(dev); rpdev = pcie_find_root_port(dev);
......
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