aboutsummaryrefslogtreecommitdiffstats
path: root/docs/xen-api/vm_lifecycle.dot
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-01-25 13:28:25 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-01-25 13:28:25 +0000
commit961f9b1fc95c51ed8f076782835d148b040d0005 (patch)
treebd91a386df38715f661271725aef02b5ba079113 /docs/xen-api/vm_lifecycle.dot
parentbb09427c71cd621637565fb906c2114a2a6878cf (diff)
downloadxen-961f9b1fc95c51ed8f076782835d148b040d0005.tar.gz
xen-961f9b1fc95c51ed8f076782835d148b040d0005.tar.bz2
xen-961f9b1fc95c51ed8f076782835d148b040d0005.zip
(Re)introduce notion of crashed VM power state.
The crashed power state is necessary to allow both core-dumping a crashed but preserved VM and renaming/restarting a crashed VM. Signed-off-by: Jim Fehlig <jfehlig@novell.com>
Diffstat (limited to 'docs/xen-api/vm_lifecycle.dot')
-rw-r--r--docs/xen-api/vm_lifecycle.dot4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/xen-api/vm_lifecycle.dot b/docs/xen-api/vm_lifecycle.dot
index fdc97523e2..2c062f98d0 100644
--- a/docs/xen-api/vm_lifecycle.dot
+++ b/docs/xen-api/vm_lifecycle.dot
@@ -1,6 +1,6 @@
digraph g{
-node [shape=box]; "powered down" paused running suspended;
+node [shape=box]; "powered down" paused running suspended crashed;
"powered down" -> paused [label="start(paused=true)"];
"powered down" -> running [label="start(paused=false)"];
@@ -11,5 +11,7 @@ paused -> suspended [label="suspend"];
paused -> running [label="resume"];
running -> "powered down" [label="cleanShutdown /\nhardShutdown"];
running -> paused [label="pause"];
+running -> crashed [label="guest OS crash"]
+crashed -> "powered down" [label="hardShutdown"]
} \ No newline at end of file