From: Paolo Bonzini <pbonzini@redhat.com>
To: Xuebing Wang <xbing6@gmail.com>, qemu-devel@nongnu.org
Cc: afaerber@suse.de, stefanha@redhat.com
Subject: Re: [Qemu-devel] [Discussion 06/10] memory: move contents in include/exec/address-spaces.h => memory.h
Date: Tue, 04 Mar 2014 11:26:40 +0100 [thread overview]
Message-ID: <5315AA60.1020300@redhat.com> (raw)
In-Reply-To: <1393901250-3922-7-git-send-email-xbing6@gmail.com>
Il 04/03/2014 03:47, Xuebing Wang ha scritto:
> In preparation for removing include/exec/address-spaces.h
Why?
Paolo
> Signed-off-by: Xuebing Wang <xbing6@gmail.com>
> ---
> include/exec/address-spaces.h | 29 -----------------------------
> include/exec/memory.h | 19 +++++++++++++++----
> include/hw/sh4/sh_intc.h | 1 +
> 3 files changed, 16 insertions(+), 33 deletions(-)
>
> diff --git a/include/exec/address-spaces.h b/include/exec/address-spaces.h
> index 3d12cdd..c6e5d51 100644
> --- a/include/exec/address-spaces.h
> +++ b/include/exec/address-spaces.h
> @@ -10,32 +10,3 @@
> * the COPYING file in the top-level directory.
> *
> */
> -
> -#ifndef EXEC_MEMORY_H
> -#define EXEC_MEMORY_H
> -
> -/*
> - * Internal interfaces between memory.c/exec.c/vl.c. Do not #include unless
> - * you're one of them.
> - */
> -
> -#include "exec/memory.h"
> -
> -#ifndef CONFIG_USER_ONLY
> -
> -/* Get the root memory region. This interface should only be used temporarily
> - * until a proper bus interface is available.
> - */
> -MemoryRegion *get_system_memory(void);
> -
> -/* Get the root I/O port region. This interface should only be used
> - * temporarily until a proper bus interface is available.
> - */
> -MemoryRegion *get_system_io(void);
> -
> -extern AddressSpace address_space_memory;
> -extern AddressSpace address_space_io;
> -
> -#endif
> -
> -#endif
> diff --git a/include/exec/memory.h b/include/exec/memory.h
> index 9101fc3..bd75af9 100644
> --- a/include/exec/memory.h
> +++ b/include/exec/memory.h
> @@ -25,9 +25,7 @@
> #include <stdbool.h>
> #include "qemu-common.h"
> #include "exec/cpu-common.h"
> -#ifndef CONFIG_USER_ONLY
> #include "exec/hwaddr.h"
> -#endif
> #include "qemu/queue.h"
> #include "qemu/int128.h"
> #include "qemu/notify.h"
> @@ -1052,6 +1050,19 @@ void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len,
> int is_write, hwaddr access_len);
>
>
> -#endif
> +/* Get the root memory region. This interface should only be used temporarily
> + * until a proper bus interface is available.
> + */
> +MemoryRegion *get_system_memory(void);
> +
> +/* Get the root I/O port region. This interface should only be used
> + * temporarily until a proper bus interface is available.
> + */
> +MemoryRegion *get_system_io(void);
> +
> +extern AddressSpace address_space_memory;
> +extern AddressSpace address_space_io;
> +
> +#endif /* !CONFIG_USER_ONLY */
>
> -#endif
> +#endif /* MEMORY_H */
> diff --git a/include/hw/sh4/sh_intc.h b/include/hw/sh4/sh_intc.h
> index b7ddcb0..644acb7 100644
> --- a/include/hw/sh4/sh_intc.h
> +++ b/include/hw/sh4/sh_intc.h
> @@ -4,6 +4,7 @@
> #include "qemu-common.h"
> #include "hw/irq.h"
> #include "exec/address-spaces.h"
> +#include "exec/memory.h"
>
> typedef unsigned char intc_enum;
>
>
next prev parent reply other threads:[~2014-03-04 10:26 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-04 2:47 [Qemu-devel] [Discussion 00/10] about API hierarchy Xuebing Wang
2014-03-04 2:47 ` [Qemu-devel] [Discussion 01/10] docs: add docs/api-hierarchy.txt Xuebing Wang
2014-03-04 9:42 ` Stefan Hajnoczi
2014-03-04 9:58 ` Xuebing wang
2014-03-04 11:57 ` Stefan Hajnoczi
2014-03-04 2:47 ` [Qemu-devel] [Discussion 02/10] NEED_CPU_H: remove '#include "cpu.h"' from include/qemu-common.h Xuebing Wang
2014-03-04 10:19 ` Paolo Bonzini
2014-03-04 11:54 ` Xuebing wang
2014-03-04 12:02 ` Xuebing wang
2014-03-04 12:09 ` Paolo Bonzini
2014-03-04 12:09 ` Xuebing wang
2014-03-04 12:34 ` Peter Maydell
2014-03-04 12:40 ` Xuebing wang
2014-03-04 12:19 ` Xuebing wang
2014-03-04 12:23 ` Paolo Bonzini
2014-03-04 12:26 ` Xuebing wang
2014-03-04 12:29 ` Paolo Bonzini
2014-03-04 2:47 ` [Qemu-devel] [Discussion 03/10] NEED_CPU_H: remove unnecessary use of NEED_CPU_H Xuebing Wang
2014-03-04 10:20 ` Paolo Bonzini
2014-03-04 2:47 ` [Qemu-devel] [Discussion 04/10] memory_mapping: make this architecture-independent Xuebing Wang
2014-03-04 10:22 ` Paolo Bonzini
2014-03-04 11:05 ` Peter Maydell
2014-03-04 2:47 ` [Qemu-devel] [Discussion 05/10] NEED_CPU_H: remove unnecessary inclusion of "cpu.h" in root Xuebing Wang
2014-03-04 10:24 ` Paolo Bonzini
2014-03-04 2:47 ` [Qemu-devel] [Discussion 06/10] memory: move contents in include/exec/address-spaces.h => memory.h Xuebing Wang
2014-03-04 10:26 ` Paolo Bonzini [this message]
2014-03-04 2:47 ` [Qemu-devel] [Discussion 07/10] memory: remove file include/exec/address-spaces.h Xuebing Wang
2014-03-04 2:47 ` [Qemu-devel] [Discussion 08/10] exec: move TranslationBlock API from exec-all.h => translate.h Xuebing Wang
2014-03-04 10:27 ` Paolo Bonzini
2014-03-04 2:47 ` [Qemu-devel] [Discussion 09/10] exec: remove the unnecessary include of "exec-all.h" Xuebing Wang
2014-03-04 10:27 ` Paolo Bonzini
2014-03-04 11:11 ` Peter Maydell
2014-03-04 11:16 ` Peter Maydell
2014-03-04 2:47 ` [Qemu-devel] [Discussion 10/10] translate: remove file translate-all.h Xuebing Wang
2014-03-04 10:29 ` Paolo Bonzini
2014-03-04 3:45 ` [Qemu-devel] [Discussion 00/10] about API hierarchy Andreas Färber
2014-03-04 5:37 ` Xuebing wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5315AA60.1020300@redhat.com \
--to=pbonzini@redhat.com \
--cc=afaerber@suse.de \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=xbing6@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.