diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-04-15 01:06:56 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-04-15 01:06:56 +0200 |
commit | 38a5e3fb17e542dd86078eeb43029bf8f146a884 (patch) | |
tree | e674d9bf622207539bff348011b34d326b6c0461 /include | |
parent | Merge tag '5.18-rc2-smb3-fixes' of git://git.samba.org/sfrench/cifs-2.6 (diff) | |
parent | vfio/pci: Fix vf_token mechanism when device-specific VF drivers are used (diff) | |
download | linux-38a5e3fb17e542dd86078eeb43029bf8f146a884.tar.xz linux-38a5e3fb17e542dd86078eeb43029bf8f146a884.zip |
Merge tag 'vfio-v5.18-rc3' of https://github.com/awilliam/linux-vfio
Pull vfio fix from Alex Williamson:
- Fix VF token checking for vfio-pci variant drivers (Jason Gunthorpe)
* tag 'vfio-v5.18-rc3' of https://github.com/awilliam/linux-vfio:
vfio/pci: Fix vf_token mechanism when device-specific VF drivers are used
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/vfio_pci_core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/vfio_pci_core.h b/include/linux/vfio_pci_core.h index 74a4a0f17b28..48f2dd3c568c 100644 --- a/include/linux/vfio_pci_core.h +++ b/include/linux/vfio_pci_core.h @@ -133,6 +133,8 @@ struct vfio_pci_core_device { struct mutex ioeventfds_lock; struct list_head ioeventfds_list; struct vfio_pci_vf_token *vf_token; + struct list_head sriov_pfs_item; + struct vfio_pci_core_device *sriov_pf_core_dev; struct notifier_block nb; struct mutex vma_lock; struct list_head vma_list; |