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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Jan 2020 13:50:24 +0000 (14:50 +0100)
commitc8fa33f8315353035dece3e3ff24e4b21b05b5b0
tree45c195af4bedbd9f2b9aa4880eb192823392ea7b
parent7aa3aab0e2f865b1298e9e7b672aa554a31fdedd
vfio_pci: Enable memory accesses before calling pci_map_rom

[ Upstream commit 0cfd027be1d6def4a462cdc180c055143af24069 ]

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: 89e1f7d4c66d ("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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/vfio/pci/vfio_pci.c