diff options
author | Neil Brown <neilb@suse.de> | 2008-07-12 12:27:40 +0200 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2008-07-12 12:27:40 +0200 |
commit | 4d43913ce07ffbcb1ae8e7bdd06a4bd67cd07791 (patch) | |
tree | cc1f8daee6e0817a778fbaa1064b2afad50351a7 /msg.h | |
parent | Remove mon_pipe for communicating from monitor to manager (diff) | |
download | mdadm-4d43913ce07ffbcb1ae8e7bdd06a4bd67cd07791.tar.xz mdadm-4d43913ce07ffbcb1ae8e7bdd06a4bd67cd07791.zip |
Remove mgr_pipe for communicating from manage to monitor.
Data is being passed in shared memory, so the pipe is only being
use as a wakeup. This can more easily be done with a thread-signal.
Diffstat (limited to 'msg.h')
-rw-r--r-- | msg.h | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -27,21 +27,6 @@ struct md_message { void *buf; }; -enum md_message_action { - md_action_ping_monitor, -}; - -struct md_generic_cmd { - enum md_message_action action; -}; - -/* union of all known command types, used to sanity check ->num_bytes - * on the receive path - */ -union md_message_commands { - struct md_generic_cmd generic; -}; - extern const int start_magic; extern const int end_magic; |