From patchwork Thu Feb 4 11:03:58 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 8219271 Return-Path: X-Original-To: patchwork-qemu-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 591D2BEEE5 for ; Thu, 4 Feb 2016 11:04:22 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B606E2034C for ; Thu, 4 Feb 2016 11:04:20 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 3CFC520212 for ; Thu, 4 Feb 2016 11:04:16 +0000 (UTC) Received: from localhost ([::1]:40849 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRHhv-0007hP-Ds for patchwork-qemu-devel@patchwork.kernel.org; Thu, 04 Feb 2016 06:04:15 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40570) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRHho-0007hG-Js for qemu-devel@nongnu.org; Thu, 04 Feb 2016 06:04:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aRHhg-0007e0-Sy for qemu-devel@nongnu.org; Thu, 04 Feb 2016 06:04:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44670) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRHhg-0007dw-Ni; Thu, 04 Feb 2016 06:04:00 -0500 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 (Postfix) with ESMTPS id 4D58E92A49; Thu, 4 Feb 2016 11:04:00 +0000 (UTC) Received: from donizetti.brq.redhat.com (dhcp129-233.brq.redhat.com [10.34.129.233]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u14B3wwI017417; Thu, 4 Feb 2016 06:03:59 -0500 From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Thu, 4 Feb 2016 12:03:58 +0100 Message-Id: <1454583838-22272-1-git-send-email-pbonzini@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: qemu-trivial@nongnu.org Subject: [Qemu-devel] [PATCH] migration: move page_cache.c to migration/ X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP page_cache.c is part of the XBZRLE implementation, move it to the right directory. Signed-off-by: Paolo Bonzini --- Makefile.objs | 1 - migration/Makefile.objs | 2 +- page_cache.c => migration/page_cache.c | 0 3 files changed, 1 insertion(+), 2 deletions(-) rename page_cache.c => migration/page_cache.c (100%) diff --git a/page_cache.c b/migration/page_cache.c similarity index 100% rename from page_cache.c rename to migration/page_cache.c diff --git a/Makefile.objs b/Makefile.objs index 06b95c7..f950b0f 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -51,7 +51,6 @@ common-obj-$(CONFIG_LINUX) += fsdev/ common-obj-y += migration/ common-obj-y += qemu-char.o #aio.o -common-obj-y += page_cache.o common-obj-y += qjson.o common-obj-$(CONFIG_SPICE) += spice-qemu-char.o diff --git a/migration/Makefile.objs b/migration/Makefile.objs index 0cac6d7..e5778de 100644 --- a/migration/Makefile.objs +++ b/migration/Makefile.objs @@ -1,7 +1,7 @@ common-obj-y += migration.o tcp.o common-obj-y += vmstate.o common-obj-y += qemu-file.o qemu-file-buf.o qemu-file-unix.o qemu-file-stdio.o -common-obj-y += xbzrle.o postcopy-ram.o +common-obj-y += xbzrle.o page_cache.o postcopy-ram.o common-obj-$(CONFIG_RDMA) += rdma.o common-obj-$(CONFIG_POSIX) += exec.o unix.o fd.o