diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2009-09-25 19:07:19 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-10-01 15:17:49 -0400 |
commit | b411b3637fa71fce9cf2acf0639009500f5892fe (patch) | |
tree | 6b88e5202e0f137fef50e95b0441bcafdbf91990 /Documentation/blockdev/drbd/node-states-8.dot | |
parent | 1a35e0f6443f4266dad4c569c55c57a9032596fa (diff) |
The DRBD driver
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'Documentation/blockdev/drbd/node-states-8.dot')
-rw-r--r-- | Documentation/blockdev/drbd/node-states-8.dot | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/blockdev/drbd/node-states-8.dot b/Documentation/blockdev/drbd/node-states-8.dot new file mode 100644 index 000000000000..4a2b00c23547 --- /dev/null +++ b/Documentation/blockdev/drbd/node-states-8.dot | |||
@@ -0,0 +1,14 @@ | |||
1 | digraph node_states { | ||
2 | Secondary -> Primary [ label = "ioctl_set_state()" ] | ||
3 | Primary -> Secondary [ label = "ioctl_set_state()" ] | ||
4 | } | ||
5 | |||
6 | digraph peer_states { | ||
7 | Secondary -> Primary [ label = "recv state packet" ] | ||
8 | Primary -> Secondary [ label = "recv state packet" ] | ||
9 | Primary -> Unknown [ label = "connection lost" ] | ||
10 | Secondary -> Unknown [ label = "connection lost" ] | ||
11 | Unknown -> Primary [ label = "connected" ] | ||
12 | Unknown -> Secondary [ label = "connected" ] | ||
13 | } | ||
14 | |||