diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-21 11:49:31 +0300 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2008-04-30 17:09:25 -0700 |
commit | 4af694e672aaa85940d6e29d27b7eeea5f6eb258 (patch) | |
tree | 1b3c44adc3aed1e90b6468412b8a1bcc527c1668 /fs | |
parent | 4d8755b5e667df8f01647773ba744a5ac97e68e6 (diff) |
ocfs2: make struct o2cb_stack_ops static
This patch makes the needlessly global struct o2cb_stack_ops static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/stack_o2cb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/stack_o2cb.c b/fs/ocfs2/stack_o2cb.c index ac1d74c63bf5..bbd1667aa7d3 100644 --- a/fs/ocfs2/stack_o2cb.c +++ b/fs/ocfs2/stack_o2cb.c @@ -385,7 +385,7 @@ static int o2cb_cluster_this_node(unsigned int *node) return 0; } -struct ocfs2_stack_operations o2cb_stack_ops = { +static struct ocfs2_stack_operations o2cb_stack_ops = { .connect = o2cb_cluster_connect, .disconnect = o2cb_cluster_disconnect, .hangup = o2cb_cluster_hangup, |