From patchwork Thu Jan 7 13:55:29 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Denis V. Lunev" X-Patchwork-Id: 564306 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 6BBC21402E2 for ; Fri, 8 Jan 2016 00:59:45 +1100 (AEDT) Received: from localhost ([::1]:58803 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHB6N-0004Mp-8K for incoming@patchwork.ozlabs.org; Thu, 07 Jan 2016 08:59:43 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39483) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHB2c-00055g-NS for qemu-devel@nongnu.org; Thu, 07 Jan 2016 08:55:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aHB2b-0006ZV-UK for qemu-devel@nongnu.org; Thu, 07 Jan 2016 08:55:50 -0500 Received: from mailhub.sw.ru ([195.214.232.25]:38803 helo=relay.sw.ru) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHB2b-0006Y2-Hy for qemu-devel@nongnu.org; Thu, 07 Jan 2016 08:55:49 -0500 Received: from hades.sw.ru ([10.30.8.132]) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id u061ud11017680; Wed, 6 Jan 2016 04:56:52 +0300 (MSK) From: "Denis V. Lunev" To: Date: Thu, 7 Jan 2016 16:55:29 +0300 Message-Id: <1452174932-28657-9-git-send-email-den@openvz.org> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1452174932-28657-1-git-send-email-den@openvz.org> References: <1452174932-28657-1-git-send-email-den@openvz.org> X-detected-operating-system: by eggs.gnu.org: OpenBSD 3.x X-Received-From: 195.214.232.25 Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com, "Denis V. Lunev" Subject: [Qemu-devel] [PATCH 08/11] log: move qemu-log.c into util/ directory 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+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org log will become common facility with tracepoints support in next step. Signed-off-by: Denis V. Lunev Reviewed-by: Paolo Bonzini --- Makefile.objs | 1 - util/Makefile.objs | 1 + qemu-log.c => util/log.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename qemu-log.c => util/log.c (100%) diff --git a/Makefile.objs b/Makefile.objs index dac2c02..b003533 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -88,7 +88,6 @@ endif ####################################################################### # Target-independent parts used in system and user emulation -common-obj-y += qemu-log.o common-obj-y += tcg-runtime.o common-obj-y += hw/ common-obj-y += qom/ diff --git a/util/Makefile.objs b/util/Makefile.objs index 8620a80..a8a777e 100644 --- a/util/Makefile.objs +++ b/util/Makefile.objs @@ -31,3 +31,4 @@ util-obj-y += coroutine-$(CONFIG_COROUTINE_BACKEND).o util-obj-y += buffer.o util-obj-y += timed-average.o util-obj-y += base64.o +util-obj-y += log.o diff --git a/qemu-log.c b/util/log.c similarity index 100% rename from qemu-log.c rename to util/log.c