comment correction for libvirt multiattach

The libvirt driver had a significant error in a comment, incorrectly
describing qemu/libvirt version interaction for volume multiattach.
This corrects that, bringing it in line with the implementation [1].

[1] bea1b97178/nova/virt/libvirt/driver.py (L578-L589)

Change-Id: I3faade7cb769b3abee284900582542bb1f28897a
This commit is contained in:
Matthew Edmonds 2018-08-09 15:50:43 -04:00
parent 83574f7e07
commit 3e6ca7dd4e
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ PERF_EVENTS_CPU_FLAG_MAPPING = {'cmt': 'cmt',
# Mediated devices support
MIN_LIBVIRT_MDEV_SUPPORT = (3, 4, 0)
# libvirt>=3.10 is required for volume multiattach if qemu<2.10.
# libvirt>=3.10 is required for volume multiattach unless qemu<2.10.
# See https://bugzilla.redhat.com/show_bug.cgi?id=1378242
# for details.
MIN_LIBVIRT_MULTIATTACH = (3, 10, 0)