Merge "libvirt: fix typos in comments"

This commit is contained in:
Jenkins 2016-06-21 15:32:09 +00:00 committed by Gerrit Code Review
commit 41616f9d55
3 changed files with 4 additions and 4 deletions

View File

@ -532,7 +532,7 @@ def get_disk_mapping(virt_type, instance,
if get_device_name(bdm)]
# NOTE (ndipanov): root_bdm can be None when we boot from image
# as there is no driver represenation of local targeted images
# as there is no driver representation of local targeted images
# and they will not be in block_device_info list.
root_bdm = block_device.get_root_bdm(
driver.block_device_info_get_mapping(block_device_info))

View File

@ -281,7 +281,7 @@ QEMU_MAX_SERIAL_PORTS = 4
# Qemu supports 4 serial consoles, we remove 1 because of the PTY one defined
ALLOWED_QEMU_SERIAL_PORTS = QEMU_MAX_SERIAL_PORTS - 1
# realtime suppport
# realtime support
MIN_LIBVIRT_REALTIME_VERSION = (1, 2, 13)
MIN_LIBVIRT_OTHER_ARCH = {arch.S390: MIN_LIBVIRT_KVM_S390_VERSION,
@ -4964,7 +4964,7 @@ class LibvirtDriver(driver.ComputeDriver):
Refer to the objects/pci_device.py for more idea of these keys.
:returns: a JSON string containaing a list of the assignable PCI
:returns: a JSON string containing a list of the assignable PCI
devices information
"""
# Bail early if we know we can't support `listDevices` to avoid

View File

@ -529,7 +529,7 @@ class Guest(object):
flags=flags, bandwidth=bandwidth)
def abort_job(self):
"""Requests to abort current backgroud job"""
"""Requests to abort current background job"""
self._domain.abortJob()
def migrate_configure_max_downtime(self, mstime):