vfio-pci: Mask cap zero
authorAlex Williamson <alex.williamson@redhat.com>
Wed, 8 Apr 2020 17:45:28 +0000 (11:45 -0600)
committerSasha Levin <sashal@kernel.org>
Tue, 30 Jun 2020 19:38:25 +0000 (15:38 -0400)
commit4481d24699f0c1d528202c7659cef2c1251c104a
treea562c761fe92199453eacd03683576aca5cba27c
parent73ce7f36a9ac3128b6529a9a9c899534aab02fa2
vfio-pci: Mask cap zero

[ Upstream commit bc138db1b96264b9c1779cf18d5a3b186aa90066 ]

The PCI Code and ID Assignment Specification changed capability ID 0
from reserved to a NULL capability in the v1.1 revision.  The NULL
capability is defined to include only the 16-bit capability header,
ie. only the ID and next pointer.  Unfortunately vfio-pci creates a
map of config space, where ID 0 is used to reserve the standard type
0 header.  Finding an actual capability with this ID therefore results
in a bogus range marked in that map and conflicts with subsequent
capabilities.  As this seems to be a dummy capability anyway and we
already support dropping capabilities, let's hide this one rather than
delving into the potentially subtle dependencies within our map.

Seen on an NVIDIA Tesla T4.

Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/vfio/pci/vfio_pci_config.c