Grayskull Repository branch, master, updated. git-migration-282-g088e88d
A ref change was pushed to the repository containing the project "Grayskull Repository". The branch, master has been updated via 088e88dd34e9d2caf5c67383440032c7d51f9a57 (commit) from 6443e3baeae94a4b1d2181b7142ea2334168bebd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 088e88dd34e9d2caf5c67383440032c7d51f9a57 Author: Dries Kimpe <[email protected]> Date: Tue Dec 15 15:14:17 2009 -0600 Dot diagram ----------------------------------------------------------------------- Summary of changes: wiki/Makefile | 5 ++++ wiki/proto-overview.dot | 53 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 0 deletions(-) create mode 100644 wiki/Makefile create mode 100644 wiki/proto-overview.dot Diff of changes: diff --git a/wiki/Makefile b/wiki/Makefile new file mode 100644 index 0000000..485075c --- /dev/null +++ b/wiki/Makefile @@ -0,0 +1,5 @@ + +%.eps: %.dot + dot -Teps -o $@ $^ + +all:: proto-overview.eps diff --git a/wiki/proto-overview.dot b/wiki/proto-overview.dot new file mode 100644 index 0000000..a95ae52 --- /dev/null +++ b/wiki/proto-overview.dot @@ -0,0 +1,53 @@ +digraph prototype { + +overlap = false; +splines = true; + +subgraph resources +{ +color = blue; +rank = same; +node [style=filled,color=lightgray,shape=octagon]; +cosd [label="COSD"]; +net [label="MPI/Net"]; +} + +client [label="Client"]; +obj_group [label="Object/Group"]; +rebuild [label="Rebuild"]; +rosd [label="ROSD"]; +placement [label="Placement"]; +rpc [label="RPC"]; +pipelining [label="Pipelining"]; +failure [label="Failure/Gossip"]; + +client -> failure; +client -> obj_group; +client -> pipelining; +client -> placement; + +obj_group -> placement; +obj_group -> rosd; +obj_group -> net; + +rebuild -> failure; +rebuild -> rosd [ label="?"] ; +rebuild -> placement; + +failure -> rpc; + +placement -> failure; + +rosd -> placement; +rosd -> cosd; +rosd -> rpc; +rosd -> failure; + +rpc -> net; + +pipelining -> net; +pipelining -> cosd; + + + +} hooks/post-receive -- Grayskull Repository
participants (1)
-
noreply@mcs.anl.gov