]> xenbits.xensource.com Git - xen.git/commitdiff
tools: libxc: Add nomigrate stubs for xc_domain_(save|restore)2.
authorIan Campbell <ian.campbell@citrix.com>
Wed, 15 Jul 2015 11:43:00 +0000 (12:43 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Wed, 15 Jul 2015 11:59:50 +0000 (12:59 +0100)
Fixes the build on ARM after the switch to migration v2 in
210b4817529d "tools/libxc+libxl+xl: Save v2 streams" and
3a9ace0147d4 "tools/libxc+libxl+xl: Restore v2 streams".

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
tools/libxc/xc_nomigrate.c

index 76978a0361a10fbee471f481f6051b446d6f93da..426aee6efc879ce94a81bfde13aa34feca078f71 100644 (file)
@@ -29,6 +29,14 @@ int xc_domain_save(xc_interface *xch, int io_fd, uint32_t dom, uint32_t max_iter
     return -1;
 }
 
+int xc_domain_save2(xc_interface *xch, int io_fd, uint32_t dom, uint32_t max_iters,
+                    uint32_t max_factor, uint32_t flags,
+                    struct save_callbacks* callbacks, int hvm)
+{
+    errno = ENOSYS;
+    return -1;
+}
+
 int xc_domain_restore(xc_interface *xch, int io_fd, uint32_t dom,
                       unsigned int store_evtchn, unsigned long *store_mfn,
                       domid_t store_domid, unsigned int console_evtchn,
@@ -41,6 +49,18 @@ int xc_domain_restore(xc_interface *xch, int io_fd, uint32_t dom,
     return -1;
 }
 
+int xc_domain_restore2(xc_interface *xch, int io_fd, uint32_t dom,
+                       unsigned int store_evtchn, unsigned long *store_mfn,
+                       domid_t store_domid, unsigned int console_evtchn,
+                       unsigned long *console_mfn, domid_t console_domid,
+                       unsigned int hvm, unsigned int pae, int superpages,
+                       int checkpointed_stream,
+                       struct restore_callbacks *callbacks)
+{
+    errno = ENOSYS;
+    return -1;
+}
+
 /*
  * Local variables:
  * mode: C