diff options
author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2017-05-15 15:05:29 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-05-18 18:04:54 +0200 |
commit | ed1701c6a5a7d08f33148c50c4d28799ee0568c4 (patch) | |
tree | 84780f3d49372b365b9273f44ab679d38cdcae72 /migration/Makefile.objs | |
parent | a0762d9e34404d671bf9241bbd5b67c38953c63a (diff) |
block migration: Allow compile time disable
Many users now prefer to use drive_mirror over NBD as an
alternative to the older migrate -b option; drive_mirror is
more complex to setup but gives you more options (e.g. only
migrating some of the disks if some of them are shared).
Allow the large chunk of block migration code to be compiled
out for those who don't use it.
Based on a downstream-patch we've had for a while by Jeff Cody.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
--
- When compiled out, allow seting block only with false value (eric)
Diffstat (limited to 'migration/Makefile.objs')
-rw-r--r-- | migration/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/Makefile.objs b/migration/Makefile.objs index c1920b6fc0..00a3f4a1d9 100644 --- a/migration/Makefile.objs +++ b/migration/Makefile.objs @@ -9,5 +9,5 @@ common-obj-y += qjson.o common-obj-$(CONFIG_RDMA) += rdma.o -common-obj-y += block.o +common-obj-$(CONFIG_LIVE_BLOCK_MIGRATION) += block.o |