* [PATCH] dump guest core if enable-dump true
@ 2005-04-30 6:05 Kip Macy
0 siblings, 0 replies; only message in thread
From: Kip Macy @ 2005-04-30 6:05 UTC (permalink / raw)
To: xen-devel
Self-explanatory
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2005/04/29 23:01:40-07:00 kmacy@curly.lab.netapp.com
# dump guest core if enable-dump is set
# Signed-off-by: Kip Macy <kmacy@fsmware.com>
#
# tools/python/xen/xend/XendRoot.py
# 2005/04/29 23:01:32-07:00 kmacy@curly.lab.netapp.com +3 -0
# add enable-dump check
#
# tools/python/xen/xend/XendDomain.py
# 2005/04/29 23:01:32-07:00 kmacy@curly.lab.netapp.com +2 -0
# dump core if enabled
#
diff -Nru a/tools/python/xen/xend/XendDomain.py
b/tools/python/xen/xend/XendDomain.py
--- a/tools/python/xen/xend/XendDomain.py 2005-04-28 23:08:40 -07:00
+++ b/tools/python/xen/xend/XendDomain.py 2005-04-28 23:08:40 -07:00
@@ -255,6 +255,8 @@
eserver.inject('xend.domain.exit', [name, id, reason])
self.domain_restart_schedule(id, reason)
else:
+ if xroot.get_enable_dump() == 'true':
+ xc.domain_dumpcore(dom = int(id), corefile =
"/var/xen/dump/%s.%s.core"%(name,id))
eserver.inject('xend.domain.exit', [name, id, 'crash'])
destroyed += 1
self.final_domain_destroy(id)
diff -Nru a/tools/python/xen/xend/XendRoot.py
b/tools/python/xen/xend/XendRoot.py
--- a/tools/python/xen/xend/XendRoot.py 2005-04-28 23:08:40 -07:00
+++ b/tools/python/xen/xend/XendRoot.py 2005-04-28 23:08:40 -07:00
@@ -255,6 +255,9 @@
def get_network_script(self):
return self.get_config_value('network-script', 'network')
+ def get_enable_dump(self):
+ return self.get_config_value('enable-dump', 'false')
+
def get_vif_bridge(self):
return self.get_config_value('vif-bridge', 'xen-br0')
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-04-30 6:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-30 6:05 [PATCH] dump guest core if enable-dump true Kip Macy
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.