diff options
author | Kurt Hackel <kurt.hackel@oracle.com> | 2007-01-17 20:04:25 -0500 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-02-07 15:06:56 -0500 |
commit | d74c9803a90d733f5fb7270475aa6d14b45796c6 (patch) | |
tree | 7f402437667103773cfe7d76b56a621183e84094 /fs/ocfs2/cluster/tcp_internal.h | |
parent | 74aa25856c693d20a886cdb31a004aaca411d135 (diff) |
ocfs2: Added post handler callable function in o2net message handler
Currently o2net allows one handler function per message type. This
patch adds the ability to call another function to be called after
the handler has returned the message to the other node.
Handlers are now given the option of returning a context (in the form of a
void **) which will be passed back into the post message handler function.
Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com>
Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/cluster/tcp_internal.h')
-rw-r--r-- | fs/ocfs2/cluster/tcp_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ocfs2/cluster/tcp_internal.h b/fs/ocfs2/cluster/tcp_internal.h index 775c911342f4..d74040fac343 100644 --- a/fs/ocfs2/cluster/tcp_internal.h +++ b/fs/ocfs2/cluster/tcp_internal.h | |||
@@ -161,6 +161,8 @@ struct o2net_msg_handler { | |||
161 | u32 nh_key; | 161 | u32 nh_key; |
162 | o2net_msg_handler_func *nh_func; | 162 | o2net_msg_handler_func *nh_func; |
163 | o2net_msg_handler_func *nh_func_data; | 163 | o2net_msg_handler_func *nh_func_data; |
164 | o2net_post_msg_handler_func | ||
165 | *nh_post_func; | ||
164 | struct kref nh_kref; | 166 | struct kref nh_kref; |
165 | struct list_head nh_unregister_item; | 167 | struct list_head nh_unregister_item; |
166 | }; | 168 | }; |