mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-26 07:36:19 +00:00
qemu: Mark NVMe disks as 'need VFIO'
There are couple of places where a domain with a VFIO device gets special treatment: in CGroups when enabling/disabling access to /dev/vfio/vfio, and when creating/removing nodes in domain mount namespace. Well, a NVMe disk is a VFIO device too. Fortunately, we have this qemuDomainNeedsVFIO() function which is the only place that needs adjustment. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
parent
a80ebd2a2a
commit
329a680297
@ -13826,7 +13826,8 @@ bool
|
|||||||
qemuDomainNeedsVFIO(const virDomainDef *def)
|
qemuDomainNeedsVFIO(const virDomainDef *def)
|
||||||
{
|
{
|
||||||
return virDomainDefHasVFIOHostdev(def) ||
|
return virDomainDefHasVFIOHostdev(def) ||
|
||||||
virDomainDefHasMdevHostdev(def);
|
virDomainDefHasMdevHostdev(def) ||
|
||||||
|
virDomainDefHasNVMeDisk(def);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user