diff options
author | 2023-05-23 16:52:50 -0600 | |
---|---|---|
committer | 2023-05-26 13:58:27 -0600 | |
commit | d9824f70e52c736498c9177688cee5aa789e560c (patch) | |
tree | bfbeeec21162839496b29fabe970a9f771cd0ad0 | |
parent | vfio/pci: Clear VFIO_IRQ_INFO_NORESIZE for MSI-X (diff) | |
download | wireguard-linux-d9824f70e52c736498c9177688cee5aa789e560c.tar.xz wireguard-linux-d9824f70e52c736498c9177688cee5aa789e560c.zip |
vfio/pci: Also demote hiding standard cap messages
Apply the same logic as commit 912b625b4dcf ("vfio/pci: demote hiding
ecap messages to debug level") for the less common case of hiding
standard capabilities.
Reviewed-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Link: https://lore.kernel.org/r/20230523225250.1215911-1-alex.williamson@redhat.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/vfio/pci/vfio_pci_config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/vfio/pci/vfio_pci_config.c b/drivers/vfio/pci/vfio_pci_config.c index 1d95fe435f0e..7e2e62ab0869 100644 --- a/drivers/vfio/pci/vfio_pci_config.c +++ b/drivers/vfio/pci/vfio_pci_config.c @@ -1566,8 +1566,8 @@ static int vfio_cap_init(struct vfio_pci_core_device *vdev) } if (!len) { - pci_info(pdev, "%s: hiding cap %#x@%#x\n", __func__, - cap, pos); + pci_dbg(pdev, "%s: hiding cap %#x@%#x\n", __func__, + cap, pos); *prev = next; pos = next; continue; |