diff options
author | Michael R. Hines <mrhines@us.ibm.com> | 2014-01-13 14:28:11 +0800 |
---|---|---|
committer | Jiri Denemark <jdenemar@redhat.com> | 2014-09-23 08:11:50 +0200 |
commit | ed22a4743437b6f646eb33659a212dd252a5b65d (patch) | |
tree | ddba2fa96eda57157394296e8dc009f9207e56b1 /src/qemu/qemu.conf | |
parent | b3fd95e368e507b619e6c0588ed18b14c6536adf (diff) | |
download | libvirt-ed22a4743437b6f646eb33659a212dd252a5b65d.tar.gz |
qemu: RDMA migration support
This patch adds support for RDMA protocol in migration URIs.
USAGE: $ virsh migrate --live --migrateuri rdma://hostname domain qemu+ssh://hostname/system
Since libvirt runs QEMU in a pretty restricted environment, several
files needs to be added to cgroup_device_acl (in qemu.conf) for QEMU to
be able to access the host's infiniband hardware. Full documenation of
the feature can be found on QEMU wiki:
http://wiki.qemu.org/Features/RDMALiveMigration
Signed-off-by: Michael R. Hines <mrhines@us.ibm.com>
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Diffstat (limited to 'src/qemu/qemu.conf')
-rw-r--r-- | src/qemu/qemu.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/qemu/qemu.conf b/src/qemu/qemu.conf index 79bba36b01..92ca7154a6 100644 --- a/src/qemu/qemu.conf +++ b/src/qemu/qemu.conf @@ -274,6 +274,14 @@ # "/dev/ptmx", "/dev/kvm", "/dev/kqemu", # "/dev/rtc","/dev/hpet", "/dev/vfio/vfio" #] +# +# RDMA migration requires the following extra files to be added to the list: +# "/dev/infiniband/rdma_cm", +# "/dev/infiniband/issm0", +# "/dev/infiniband/issm1", +# "/dev/infiniband/umad0", +# "/dev/infiniband/umad1", +# "/dev/infiniband/uverbs0" # The default format for Qemu/KVM guest save images is raw; that is, the |