From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1La9PH-0006M4-3P for qemu-devel@nongnu.org; Thu, 19 Feb 2009 08:57:39 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1La9PF-0006LU-TC for qemu-devel@nongnu.org; Thu, 19 Feb 2009 08:57:38 -0500 Received: from [199.232.76.173] (port=40472 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1La9PF-0006LM-5H for qemu-devel@nongnu.org; Thu, 19 Feb 2009 08:57:37 -0500 Received: from mail-qy0-f20.google.com ([209.85.221.20]:50085) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1La9PE-0007jk-PN for qemu-devel@nongnu.org; Thu, 19 Feb 2009 08:57:36 -0500 Received: by qyk13 with SMTP id 13so767548qyk.10 for ; Thu, 19 Feb 2009 05:57:34 -0800 (PST) Message-ID: <499D652D.60803@codemonkey.ws> Date: Thu, 19 Feb 2009 07:57:01 -0600 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] migration: adding migration to/from a file (v2) References: <499D4654.9000305@redhat.com> In-Reply-To: <499D4654.9000305@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Uri Lublin Uri Lublin wrote: > > Migration to file, uses migration-to-fd (supports live migration). > Migration from file, uses qemu-fopen directly. Eh? Haven't we already talked about why this doesn't work? Maybe there's a v3 that you meant to send? Regards, Anthony Liguori > pre-save: > (qemu) stop # unless you really want live migration > (qemu) migrate_set_speed 3.5G # not needed, speed things up > > save: > (qemu) migrate [-d] file:/path/to/state-file > > load: > [shell] -incoming file:/path/to/state-file > > > changes from v1: > - making sure write would not block (using select) > - pass max_throttle as is (can be set by user) > - not checking qemu_mallocz > - compile for non-windows as select is being used. >