- Update to Xen 4.4.0 RC4 c/s 28391
xen-4.4.0-testing-src.tar.bz2 OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=301
This commit is contained in:
parent
e19255cb04
commit
831e1fde19
@ -298,7 +298,7 @@ Index: xen-4.4.0-testing/tools/libxl/libxl.h
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- xen-4.4.0-testing.orig/tools/libxl/libxl.h
|
--- xen-4.4.0-testing.orig/tools/libxl/libxl.h
|
||||||
+++ xen-4.4.0-testing/tools/libxl/libxl.h
|
+++ xen-4.4.0-testing/tools/libxl/libxl.h
|
||||||
@@ -673,8 +673,22 @@ int libxl_domain_suspend(libxl_ctx *ctx,
|
@@ -687,8 +687,22 @@ int libxl_domain_suspend(libxl_ctx *ctx,
|
||||||
int flags, /* LIBXL_SUSPEND_* */
|
int flags, /* LIBXL_SUSPEND_* */
|
||||||
const libxl_asyncop_how *ao_how)
|
const libxl_asyncop_how *ao_how)
|
||||||
LIBXL_EXTERNAL_CALLERS_ONLY;
|
LIBXL_EXTERNAL_CALLERS_ONLY;
|
||||||
@ -389,7 +389,7 @@ Index: xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- xen-4.4.0-testing.orig/tools/libxl/xl_cmdimpl.c
|
--- xen-4.4.0-testing.orig/tools/libxl/xl_cmdimpl.c
|
||||||
+++ xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
+++ xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
||||||
@@ -3636,6 +3636,8 @@ static void migrate_do_preamble(int send
|
@@ -3645,6 +3645,8 @@ static void migrate_do_preamble(int send
|
||||||
}
|
}
|
||||||
|
|
||||||
static void migrate_domain(uint32_t domid, const char *rune, int debug,
|
static void migrate_domain(uint32_t domid, const char *rune, int debug,
|
||||||
@ -398,7 +398,7 @@ Index: xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
|||||||
const char *override_config_file)
|
const char *override_config_file)
|
||||||
{
|
{
|
||||||
pid_t child = -1;
|
pid_t child = -1;
|
||||||
@@ -3644,7 +3646,13 @@ static void migrate_domain(uint32_t domi
|
@@ -3653,7 +3655,13 @@ static void migrate_domain(uint32_t domi
|
||||||
char *away_domname;
|
char *away_domname;
|
||||||
char rc_buf;
|
char rc_buf;
|
||||||
uint8_t *config_data;
|
uint8_t *config_data;
|
||||||
@ -413,7 +413,7 @@ Index: xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
|||||||
|
|
||||||
save_domain_core_begin(domid, override_config_file,
|
save_domain_core_begin(domid, override_config_file,
|
||||||
&config_data, &config_len);
|
&config_data, &config_len);
|
||||||
@@ -3663,10 +3671,13 @@ static void migrate_domain(uint32_t domi
|
@@ -3672,10 +3680,13 @@ static void migrate_domain(uint32_t domi
|
||||||
xtl_stdiostream_adjust_flags(logger, XTL_STDIOSTREAM_HIDE_PROGRESS, 0);
|
xtl_stdiostream_adjust_flags(logger, XTL_STDIOSTREAM_HIDE_PROGRESS, 0);
|
||||||
|
|
||||||
if (debug)
|
if (debug)
|
||||||
@ -430,7 +430,7 @@ Index: xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
|||||||
" (rc=%d)\n", rc);
|
" (rc=%d)\n", rc);
|
||||||
if (rc == ERROR_GUEST_TIMEDOUT)
|
if (rc == ERROR_GUEST_TIMEDOUT)
|
||||||
goto failed_suspend;
|
goto failed_suspend;
|
||||||
@@ -4061,13 +4072,18 @@ int main_migrate(int argc, char **argv)
|
@@ -4062,13 +4073,18 @@ int main_migrate(int argc, char **argv)
|
||||||
char *rune = NULL;
|
char *rune = NULL;
|
||||||
char *host;
|
char *host;
|
||||||
int opt, daemonize = 1, monitor = 1, debug = 0;
|
int opt, daemonize = 1, monitor = 1, debug = 0;
|
||||||
@ -450,7 +450,7 @@ Index: xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
|||||||
case 'C':
|
case 'C':
|
||||||
config_filename = optarg;
|
config_filename = optarg;
|
||||||
break;
|
break;
|
||||||
@@ -4084,6 +4100,18 @@ int main_migrate(int argc, char **argv)
|
@@ -4085,6 +4101,18 @@ int main_migrate(int argc, char **argv)
|
||||||
case 0x100:
|
case 0x100:
|
||||||
debug = 1;
|
debug = 1;
|
||||||
break;
|
break;
|
||||||
@ -469,7 +469,7 @@ Index: xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
|||||||
}
|
}
|
||||||
|
|
||||||
domid = find_domain(argv[optind]);
|
domid = find_domain(argv[optind]);
|
||||||
@@ -4099,7 +4127,8 @@ int main_migrate(int argc, char **argv)
|
@@ -4100,7 +4128,8 @@ int main_migrate(int argc, char **argv)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -478,12 +478,12 @@ Index: xen-4.4.0-testing/tools/libxl/xl_cmdimpl.c
|
|||||||
+ abort_if_busy, config_filename);
|
+ abort_if_busy, config_filename);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
Index: xen-4.4.0-testing/tools/libxl/xl_cmdtable.c
|
Index: xen-4.4.0-testing/tools/libxl/xl_cmdtable.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- xen-4.4.0-testing.orig/tools/libxl/xl_cmdtable.c
|
--- xen-4.4.0-testing.orig/tools/libxl/xl_cmdtable.c
|
||||||
+++ xen-4.4.0-testing/tools/libxl/xl_cmdtable.c
|
+++ xen-4.4.0-testing/tools/libxl/xl_cmdtable.c
|
||||||
@@ -149,14 +149,21 @@ struct cmd_spec cmd_table[] = {
|
@@ -150,14 +150,21 @@ struct cmd_spec cmd_table[] = {
|
||||||
&main_migrate, 0, 1,
|
&main_migrate, 0, 1,
|
||||||
"Migrate a domain to another host",
|
"Migrate a domain to another host",
|
||||||
"[options] <Domain> <host>",
|
"[options] <Domain> <host>",
|
||||||
@ -511,5 +511,5 @@ Index: xen-4.4.0-testing/tools/libxl/xl_cmdtable.c
|
|||||||
+ "--abort_if_busy Abort migration instead of doing final suspend, if number\n"
|
+ "--abort_if_busy Abort migration instead of doing final suspend, if number\n"
|
||||||
+ " of iterations or amount of transfered memory is exceeded."
|
+ " of iterations or amount of transfered memory is exceeded."
|
||||||
},
|
},
|
||||||
{ "dump-core",
|
{ "restore",
|
||||||
&main_dump_core, 0, 1,
|
&main_restore, 0, 1,
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:e743a99eabfbe1548d0750ff02475c2a8663119bc2003f2d1b72b50af58f2ce1
|
oid sha256:3e62addd6c9481d6b12e951dffb8474b7ccffa50a007caf7d9c9ad17fbdac4ee
|
||||||
size 7570972
|
size 7571602
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:72b10b8bedd6ee1461e5ea0150907b8f8c84b36abffb10f2e53e08af0eff76ab
|
oid sha256:ee8f1852348a9054add13614aa36cd5d0dc06522bad0e442bb7c6a8e1fcd871a
|
||||||
size 3212981
|
size 3213098
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:6d7073374e26c99902ef37a2540b01baa8d9f817bd4d0565c44be9cf7981a9aa
|
oid sha256:76b7b90cca79d7804cb4234ca1d403b8e4e03f103e3dcd03489541e66e611bf0
|
||||||
size 365995
|
size 366520
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:3ba61d78a85a2b9d1b98eae31db4dd051a069366628e31f6a1e10bd45b5077e2
|
oid sha256:4ad02731bbe8fffa1c57d5b10ddf435c01c6ecadf2a8d342660abfda1d6419d2
|
||||||
size 4355756
|
size 4356222
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 17 12:33:42 MST 2014 - carnold@suse.com
|
||||||
|
|
||||||
|
- Update to Xen 4.4.0 RC4 c/s 28391
|
||||||
|
xen-4.4.0-testing-src.tar.bz2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 11 13:27:42 MST 2014 - carnold@suse.com
|
Tue Feb 11 13:27:42 MST 2014 - carnold@suse.com
|
||||||
|
|
||||||
|
2
xen.spec
2
xen.spec
@ -20,7 +20,7 @@ Name: xen
|
|||||||
ExclusiveArch: %ix86 x86_64 %arm aarch64
|
ExclusiveArch: %ix86 x86_64 %arm aarch64
|
||||||
%define xvers 4.4
|
%define xvers 4.4
|
||||||
%define xvermaj 4
|
%define xvermaj 4
|
||||||
%define changeset 28381
|
%define changeset 28391
|
||||||
%define xen_build_dir xen-4.4.0-testing
|
%define xen_build_dir xen-4.4.0-testing
|
||||||
#
|
#
|
||||||
%define with_kmp 0
|
%define with_kmp 0
|
||||||
|
Loading…
Reference in New Issue
Block a user