diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-21 10:49:31 +0200 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2008-05-01 02:09:25 +0200 |
commit | 4af694e672aaa85940d6e29d27b7eeea5f6eb258 (patch) | |
tree | 1b3c44adc3aed1e90b6468412b8a1bcc527c1668 /fs | |
parent | ocfs2: make struct ocfs2_control_device static (diff) | |
download | linux-4af694e672aaa85940d6e29d27b7eeea5f6eb258.tar.xz linux-4af694e672aaa85940d6e29d27b7eeea5f6eb258.zip |
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, |