diff options
author | Matthew Rosato <mjrosato@linux.ibm.com> | 2020-09-10 17:59:55 +0300 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2020-09-21 23:42:11 +0300 |
commit | 12856e7acde4702b7c3238c15fcba86ff6aa507f (patch) | |
tree | f9e0073991158db7fb74b6b0fe05444836722a1e /include/linux/pci.h | |
parent | ba4f184e126b751d1bffad5897f263108befc780 (diff) | |
download | linux-12856e7acde4702b7c3238c15fcba86ff6aa507f.tar.xz |
PCI/IOV: Mark VFs as not implementing PCI_COMMAND_MEMORY
For VFs, the Memory Space Enable bit in the Command Register is
hard-wired to 0.
Add a new bit to signify devices where the Command Register Memory
Space Enable bit does not control the device's response to MMIO
accesses.
Fixes: abafbc551fdd ("vfio-pci: Invalidate mmaps and block MMIO access on disabled memory")
Signed-off-by: Matthew Rosato <mjrosato@linux.ibm.com>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 835530605c0d..3ff723124ca7 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -445,6 +445,7 @@ struct pci_dev { unsigned int is_probed:1; /* Device probing in progress */ unsigned int link_active_reporting:1;/* Device capable of reporting link active */ unsigned int no_vf_scan:1; /* Don't scan for VFs after IOV enablement */ + unsigned int no_command_memory:1; /* No PCI_COMMAND_MEMORY */ pci_dev_flags_t dev_flags; atomic_t enable_cnt; /* pci_enable_device has been called */ |