diff options
author | Juan Quintela <quintela@redhat.com> | 2017-04-24 20:50:19 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-05-18 19:20:59 +0200 |
commit | 51180423a226adbd80d64bf75b8522256b1266f1 (patch) | |
tree | e7967c0784c46f80c5edd4535fd0c9516b690233 /migration/savevm.c | |
parent | 68ba3b07436396733f7313c81956410af6d17083 (diff) | |
download | qemu-51180423a226adbd80d64bf75b8522256b1266f1.zip |
exec: Create include for target_page_size()
That is the only function that we need from exec.c, and having to
include the whole sysemu.h for this.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
/me leans to be less sloppy with copyright notices
thanks Dave
Diffstat (limited to 'migration/savevm.c')
-rw-r--r-- | migration/savevm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/migration/savevm.c b/migration/savevm.c index 85651030b4..8763700bd5 100644 --- a/migration/savevm.c +++ b/migration/savevm.c @@ -43,6 +43,7 @@ #include "qemu/queue.h" #include "sysemu/cpus.h" #include "exec/memory.h" +#include "exec/target_page.h" #include "qmp-commands.h" #include "trace.h" #include "qemu/bitops.h" |