From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57107) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ3VQ-0007yW-Rj for qemu-devel@nongnu.org; Wed, 10 Apr 2013 18:28:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQ3VK-0001Ai-GD for qemu-devel@nongnu.org; Wed, 10 Apr 2013 18:28:40 -0400 Received: from e7.ny.us.ibm.com ([32.97.182.137]:37578) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ3VK-0001AQ-5L for qemu-devel@nongnu.org; Wed, 10 Apr 2013 18:28:34 -0400 Received: from /spool/local by e7.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 10 Apr 2013 18:28:33 -0400 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id 11C5D6E803A for ; Wed, 10 Apr 2013 18:28:28 -0400 (EDT) Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r3AMSUPj355572 for ; Wed, 10 Apr 2013 18:28:30 -0400 Received: from d03av06.boulder.ibm.com (loopback [127.0.0.1]) by d03av06.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r3AMVG67003365 for ; Wed, 10 Apr 2013 16:31:16 -0600 From: mrhines@linux.vnet.ibm.com Date: Wed, 10 Apr 2013 18:28:16 -0400 Message-Id: <1365632901-15470-9-git-send-email-mrhines@linux.vnet.ibm.com> In-Reply-To: <1365632901-15470-1-git-send-email-mrhines@linux.vnet.ibm.com> References: <1365632901-15470-1-git-send-email-mrhines@linux.vnet.ibm.com> Subject: [Qemu-devel] [RFC PATCH RDMA support v1: 08/13] default chunk registration to true List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, mst@redhat.com, owasserm@redhat.com, abali@us.ibm.com, mrhines@us.ibm.com, gokul@us.ibm.com, pbonzini@redhat.com From: "Michael R. Hines" Just enable it by default. User can now disable if they want to. Signed-off-by: Michael R. Hines --- migration.c | 1 + 1 file changed, 1 insertion(+) diff --git a/migration.c b/migration.c index 404c19a..41cf5ba 100644 --- a/migration.c +++ b/migration.c @@ -69,6 +69,7 @@ MigrationState *migrate_get_current(void) .state = MIG_STATE_SETUP, .bandwidth_limit = MAX_THROTTLE, .xbzrle_cache_size = DEFAULT_MIGRATE_CACHE_SIZE, + .enabled_capabilities[MIGRATION_CAPABILITY_CHUNK_REGISTER_DESTINATION] = true, }; return ¤t_migration; -- 1.7.10.4