From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58076) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xeg6y-0002B4-9x for qemu-devel@nongnu.org; Thu, 16 Oct 2014 04:08:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xeg6r-0005kN-VC for qemu-devel@nongnu.org; Thu, 16 Oct 2014 04:08:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:24262) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xeg6r-0005k3-Na for qemu-devel@nongnu.org; Thu, 16 Oct 2014 04:08:33 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s9G88WI1020041 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Thu, 16 Oct 2014 04:08:32 -0400 From: Juan Quintela In-Reply-To: <1413446034-25167-2-git-send-email-dgilbert@redhat.com> (David Alan Gilbert's message of "Thu, 16 Oct 2014 08:53:52 +0100") References: <1413446034-25167-1-git-send-email-dgilbert@redhat.com> <1413446034-25167-2-git-send-email-dgilbert@redhat.com> Date: Thu, 16 Oct 2014 10:08:21 +0200 Message-ID: <8738aofnd6.fsf@elfo.elfo> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH 1/3] Start moving migration code into a migration directory Reply-To: quintela@redhat.com List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Dr. David Alan Gilbert (git)" Cc: qemu-devel@nongnu.org, ehabkost@redhat.com "Dr. David Alan Gilbert (git)" wrote: G> From: "Dr. David Alan Gilbert" > > The migration code now occupies a fair chunk of the top level .c > files, it seems time to give it it's own directory. > > I've not touched: > arch_init.c - that's mostly RAM migration but has a few random other > bits Will split the memory bits, and can go to migration. > savevm.c - because it's built target specific Damn, would have to look at it. > block-migration.c - should that go in block/ or migration/ ? It is really on migration. we have basically: - ram-migration - block-migration We can call other names if people preffer. > > This is purely a code move; no code has changed. > > Signed-off-by: Dr. David Alan Gilbert Thanks, Juan.