From mboxrd@z Thu Jan 1 00:00:00 1970 From: Philipp Wehrheim Subject: KVM live migration syntax Date: Mon, 08 Dec 2008 14:53:22 +0100 Message-ID: <493D26D2.5010202@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit To: kvm@vger.kernel.org Return-path: Received: from winker.dv.fh-frankfurt.de ([194.95.81.208]:34750 "EHLO winker.dv.fh-frankfurt.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751934AbYLHOU3 (ORCPT ); Mon, 8 Dec 2008 09:20:29 -0500 Received: from [192.168.10.30] by winker.dv.fh-frankfurt.de with esmtp (Exim 4.69) (envelope-from ) id 1L9gZ9-0007XQ-R6 for kvm@vger.kernel.org; Mon, 08 Dec 2008 14:54:27 +0100 Sender: kvm-owner@vger.kernel.org List-ID: Hey, I lately tried to live migrate a VM but had to find out that the syntax shown in the KVM examples and the actual syntax expected by the code do not match. from the Wiki: tcp:// migration protocol But the code says (kvm-79/qemu/migration.c): void qemu_start_incoming_migration(const char *uri) { const char *p; if (strstart(uri, "tcp:", &p)) <=================== tcp_start_incoming_migration(p); else ... So the syntax expected by the code is *without* the //. Am I missing something? Thanks flip