https://github.com/torvalds/linux
Raw File
Tip revision: 0ee5623f9a6e52df90a78bd21179f8ab370e102e authored by Linus Torvalds on 04 May 2011, 02:59:13 UTC
Linux 2.6.39-rc6
Tip revision: 0ee5623
node-states-8.dot
digraph node_states {
	Secondary -> Primary           [ label = "ioctl_set_state()" ]
	Primary   -> Secondary 	       [ label = "ioctl_set_state()" ]
}

digraph peer_states {
	Secondary -> Primary           [ label = "recv state packet" ]
	Primary   -> Secondary 	       [ label = "recv state packet" ]
	Primary   -> Unknown 	       [ label = "connection lost" ]
	Secondary  -> Unknown  	       [ label = "connection lost" ]
	Unknown   -> Primary           [ label = "connected" ]
	Unknown   -> Secondary         [ label = "connected" ]
}

back to top