On 12/15/2011 02:35 PM, Avi Kivity wrote:
Exile some exec.c functions to a private header, to prevent accidental reuse.
Please pull from
git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git memory/exec-obsolete
Avi Kivity (2):
etraxfs_eth: drop bogus cpu_unregister_io_memory()
memory: move obsolete exec.c functions to a private header
cpu-common.h | 36 -----------------------------
exec-obsolete.h | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
exec.c | 3 ++
hw/etraxfs_eth.c | 3 --
memory.c | 3 ++
5 files changed, 72 insertions(+), 39 deletions(-)
create mode 100644 exec-obsolete.h
I would prefer exec-private.h or memory-private.h. Right now, the
situation is that exec.c provides a low-level interface to memory.c. If
the situation changes, the header will disappear.
Paolo