From patchwork Thu May 8 16:09:47 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 347138 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org 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 ozlabs.org (Postfix) with ESMTPS id 160141400C6 for ; Fri, 9 May 2014 02:49:02 +1000 (EST) Received: from localhost ([::1]:48383 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiRVE-0005H8-3T for incoming@patchwork.ozlabs.org; Thu, 08 May 2014 12:49:00 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52838) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiRQw-0006OE-1p for qemu-devel@nongnu.org; Thu, 08 May 2014 12:44:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WiRQg-0003Fz-97 for qemu-devel@nongnu.org; Thu, 08 May 2014 12:44:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45391) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiRQg-0003Fj-1N for qemu-devel@nongnu.org; Thu, 08 May 2014 12:44:18 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s48GiEQa018868 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Thu, 8 May 2014 12:44:15 -0400 Received: from playground.com (ovpn-112-44.ams2.redhat.com [10.36.112.44]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s48G9rLM010754; Thu, 8 May 2014 12:10:11 -0400 From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Thu, 8 May 2014 18:09:47 +0200 Message-Id: <1399565391-27833-8-git-send-email-pbonzini@redhat.com> In-Reply-To: <1399565391-27833-1-git-send-email-pbonzini@redhat.com> References: <1399565391-27833-1-git-send-email-pbonzini@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: peter.maydell@linaro.org, rth@twiddle.net Subject: [Qemu-devel] [RFC PATCH 07/11] softmmu: move softmmu_template.h out of include/ 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 It is only included in cputlb.c now. Signed-off-by: Paolo Bonzini --- cputlb.c | 16 ++++++++-------- include/exec/softmmu_template.h => softmmu_template.h | 0 2 files changed, 8 insertions(+), 8 deletions(-) rename include/exec/softmmu_template.h => softmmu_template.h (100%) diff --git a/cputlb.c b/cputlb.c index 0a884f8..e70cf7a 100644 --- a/cputlb.c +++ b/cputlb.c @@ -334,16 +334,16 @@ tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr) #define MMUSUFFIX _mmu #define SHIFT 0 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 1 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 2 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 3 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #undef MMUSUFFIX #define MMUSUFFIX _cmmu @@ -354,13 +354,13 @@ tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr) #define SOFTMMU_CODE_ACCESS #define SHIFT 0 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 1 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 2 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" #define SHIFT 3 -#include "exec/softmmu_template.h" +#include "softmmu_template.h" diff --git a/include/exec/softmmu_template.h b/softmmu_template.h similarity index 100% rename from include/exec/softmmu_template.h rename to softmmu_template.h