-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into daos-6338
Skip-build: true Skip-test: true Signed-off-by: Hua Kuang <[email protected]> Conflicts: utils/rpms/daos.spec Change-Id: I8c60c039df015393d73f9817d21fbec8a2c410c5
- Loading branch information
Showing
162 changed files
with
6,599 additions
and
1,772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* This is a Graphviz diagram specification for the pool map state transitions | ||
* | ||
* You can compile it by installing graphviz and running: | ||
* dot -Tpng -o pool_component_state_transition_diagram.png < pool_component_state_transition_diagram.gv | ||
*/ | ||
|
||
digraph finite_state_machine { | ||
rankdir=LR; | ||
size="20,20" | ||
node [shape = doublecircle, width = 1.1]; UPIN; | ||
node [shape = none, width = 0, fixedsize = true]; _ | ||
node [shape = circle, width = 1.1]; | ||
|
||
NEW [ label = "NEW\nfseq == 0" ]; | ||
NEW_UNHEALTHY [ label = "NEW\nfseq != 0" ]; | ||
_ [ label = "" ]; | ||
|
||
_ -> NEW [ label = "Extend" ]; | ||
NEW -> NEW_UNHEALTHY [ label = "Failed" ]; | ||
NEW_UNHEALTHY -> DOWN [ label = "Extend Complete" ]; | ||
NEW -> UPIN [ label = "Extended" ]; | ||
UPIN -> DOWN [ label = "Failed" ]; | ||
UPIN -> DRAIN [ label = "Drain" ]; | ||
DRAIN -> DOWN [ label = "Failed" ]; | ||
DRAIN -> DOWNOUT [ label = "Drained" ]; | ||
DOWN -> DOWNOUT [ label = "Rebuilt" ]; | ||
UP -> UPIN [ label = "Reintegrated" ]; | ||
DOWNOUT -> UP [ label = "Reintegrate" ]; | ||
UP -> DOWNOUT [ label = "Failed" ]; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.