aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/stackglue.c
diff options
context:
space:
mode:
authorGoldwyn Rodrigues <rgoldwyn@suse.de>2014-01-21 18:48:24 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2014-01-21 19:19:41 -0500
commit3e8341516409d026636be4d7534b84e6e90bef37 (patch)
treeab6d15e41377cf38b709683890e493a3223d2303 /fs/ocfs2/stackglue.c
parent24aa338611e9b02d045a1a99050135b0d49f41b5 (diff)
ocfs2: pass ocfs2_cluster_connection to ocfs2_this_node
This is done to differentiate between using and not using controld and use the connection information accordingly. We need to be backward compatible. So, we use a new enum ocfs2_connection_type to identify when controld is used and when it is not. Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com> Reviewed-by: Mark Fasheh <mfasheh@suse.de> Cc: Joel Becker <jlbec@evilplan.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ocfs2/stackglue.c')
-rw-r--r--fs/ocfs2/stackglue.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ocfs2/stackglue.c b/fs/ocfs2/stackglue.c
index 6537979b8ac4..1324e6600e57 100644
--- a/fs/ocfs2/stackglue.c
+++ b/fs/ocfs2/stackglue.c
@@ -465,9 +465,10 @@ void ocfs2_cluster_hangup(const char *group, int grouplen)
465} 465}
466EXPORT_SYMBOL_GPL(ocfs2_cluster_hangup); 466EXPORT_SYMBOL_GPL(ocfs2_cluster_hangup);
467 467
468int ocfs2_cluster_this_node(unsigned int *node) 468int ocfs2_cluster_this_node(struct ocfs2_cluster_connection *conn,
469 unsigned int *node)
469{ 470{
470 return active_stack->sp_ops->this_node(node); 471 return active_stack->sp_ops->this_node(conn, node);
471} 472}
472EXPORT_SYMBOL_GPL(ocfs2_cluster_this_node); 473EXPORT_SYMBOL_GPL(ocfs2_cluster_this_node);
473 474