[PATCH v2 4/4] makedumpfile/xen: Move cyclic mode check from initial() to initial_xen()
Daniel Kiper
daniel.kiper at oracle.com
Mon Dec 2 09:16:44 EST 2013
Move cyclic mode check from initial() to initial_xen(). Just small cleanup.
Signed-off-by: Daniel Kiper <daniel.kiper at oracle.com>
---
makedumpfile.c | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/makedumpfile.c b/makedumpfile.c
index 45f96aa..e173f85 100644
--- a/makedumpfile.c
+++ b/makedumpfile.c
@@ -2928,14 +2928,6 @@ initial(void)
}
#endif
- if (is_xen_memory()) {
- if(info->flag_cyclic) {
- info->flag_cyclic = FALSE;
- MSG("Switched running mode from cyclic to non-cyclic,\n");
- MSG("because the cyclic mode doesn't support Xen.\n");
- }
- }
-
if (info->flag_exclude_xen_dom && !is_xen_memory()) {
MSG("'-X' option is disable,");
MSG("because %s is not Xen's memory core image.\n", info->name_memory);
@@ -7645,6 +7637,12 @@ initial_xen(void)
return FALSE;
}
+ if(info->flag_cyclic) {
+ info->flag_cyclic = FALSE;
+ MSG("Switched running mode from cyclic to non-cyclic,\n");
+ MSG("because the cyclic mode doesn't support Xen.\n");
+ }
+
if (!init_xen_crash_info())
return FALSE;
/*
--
1.7.10.4
More information about the kexec
mailing list