diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2012-12-17 18:19:49 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-12-19 08:31:31 +0100 |
| commit | 022c62cbbcf1ff40b23c92874f8670cddfec2414 (patch) | |
| tree | 3ce0d762aec7ed41ecc486156cffcc0fbbd16d26 /memory.c | |
| parent | 737e150e89c44c6b33691a627e24bac7fb58f349 (diff) | |
| download | focaccia-qemu-022c62cbbcf1ff40b23c92874f8670cddfec2414.tar.gz focaccia-qemu-022c62cbbcf1ff40b23c92874f8670cddfec2414.zip | |
exec: move include files to include/exec/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'memory.c')
| -rw-r--r-- | memory.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/memory.c b/memory.c index 741985385c..d40193d474 100644 --- a/memory.c +++ b/memory.c @@ -13,14 +13,14 @@ * GNU GPL, version 2 or (at your option) any later version. */ -#include "memory.h" -#include "exec-memory.h" -#include "ioport.h" +#include "exec/memory.h" +#include "exec/address-spaces.h" +#include "exec/ioport.h" #include "bitops.h" #include "kvm.h" #include <assert.h> -#include "memory-internal.h" +#include "exec/memory-internal.h" static unsigned memory_region_transaction_depth; static bool memory_region_update_pending; |