with all header changes merged in current master (d6550e9ed2)
above patch breaks compilation with:
exec.c: In function ‘cpu_exec_exit’:
exec.c:661:9: error: implicit declaration of function ‘vmstate_unregister’
[-Werror=implicit-function-declaration]
vmstate_unregister(NULL, cc->vmsd, cpu);
pls squash this fixup in orginal patch
Signed-off-by: Igor Mammedov <[email protected]>
---
exec.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/exec.c b/exec.c
index c5dd58e..a0327a9 100644
--- a/exec.c
+++ b/exec.c
@@ -62,6 +62,8 @@
#include "qemu/mmap-alloc.h"
#endif
+#include "migration/vmstate.h"
+
//#define DEBUG_SUBPAGE
#if !defined(CONFIG_USER_ONLY)
--
1.8.3.1