fsdetails: Drop driver="handle" UI

It was removed in qemu 4.0.0

Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson 2020-11-13 13:09:03 -05:00
parent 2b864a9294
commit b7b75ab8fc
2 changed files with 1 additions and 3 deletions

View File

@ -100,8 +100,7 @@ class vmmFSDetails(vmmGObjectUI):
drivers = []
if self.conn.is_qemu() or self.conn.is_test():
drivers += [DeviceFilesystem.DRIVER_PATH,
DeviceFilesystem.DRIVER_HANDLE]
drivers += [DeviceFilesystem.DRIVER_PATH]
if self.conn.is_lxc() or self.conn.is_test():
drivers += [DeviceFilesystem.DRIVER_LOOP,
DeviceFilesystem.DRIVER_NBD]

View File

@ -25,7 +25,6 @@ class DeviceFilesystem(Device):
MODES = [MODE_PASSTHROUGH, MODE_MAPPED, MODE_SQUASH]
DRIVER_PATH = "path"
DRIVER_HANDLE = "handle"
DRIVER_LOOP = "loop"
DRIVER_NBD = "nbd"