summaryrefslogtreecommitdiffstats
path: root/msg.h
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2008-07-12 20:27:40 +1000
committerNeil Brown <neilb@suse.de>2008-07-12 20:27:40 +1000
commit4d43913ce07ffbcb1ae8e7bdd06a4bd67cd07791 (patch)
treecc1f8daee6e0817a778fbaa1064b2afad50351a7 /msg.h
parent2f64e61a507ee4c1a8e2fcdbc2ce0ec89fcb7902 (diff)
downloadmdadm-4d43913ce07ffbcb1ae8e7bdd06a4bd67cd07791.tar.gz
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.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/msg.h b/msg.h
index ccaa571..433239d 100644
--- a/msg.h
+++ b/msg.h
@@ -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;