]> git.baikalelectronics.ru Git - kernel.git/commit
vfio_pci: Enable memory accesses before calling pci_map_rom
authorEric Auger <eric.auger@redhat.com>
Fri, 15 Feb 2019 16:16:06 +0000 (17:16 +0100)
committerAlex Williamson <alex.williamson@redhat.com>
Mon, 18 Feb 2019 21:57:50 +0000 (14:57 -0700)
commit7b6a3e1c4a33ec2733539a4f9851039644170ee7
tree42d345b7ae0a1c5b46cc2db984c993f3ffaa4b65
parent33b7cef76bfc59b81985cc7a865c31e94381723c
vfio_pci: Enable memory accesses before calling pci_map_rom

pci_map_rom/pci_get_rom_size() performs memory access in the ROM.
In case the Memory Space accesses were disabled, readw() is likely
to trigger a synchronous external abort on some platforms.

In case memory accesses were disabled, re-enable them before the
call and disable them back again just after.

Fixes: b3062d9f7da0 ("vfio: Add PCI device driver")
Signed-off-by: Eric Auger <eric.auger@redhat.com>
Suggested-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
drivers/vfio/pci/vfio_pci.c