aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/cluster
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2005-12-19 11:16:07 -0800
committerJoel Becker <joel.becker@oracle.com>2006-01-03 11:45:55 -0800
commit82353b594c784deabb8d9764b477e65c2b3726f9 (patch)
tree9182f0ac8aeca6ab49953da7c346a74d5853bd94 /fs/ocfs2/cluster
parent[PATCH] OCFS2: The Second Oracle Cluster Filesystem (diff)
downloadlinux-dev-82353b594c784deabb8d9764b477e65c2b3726f9.tar.xz
linux-dev-82353b594c784deabb8d9764b477e65c2b3726f9.zip
[PATCH] This patch contains the following cleanups:
- cluster/sys.c: make needlessly global code static - dlm/: "extern" declarations for variables belong into header files (and in this case, they are already in dlmdomain.h) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/cluster')
-rw-r--r--fs/ocfs2/cluster/sys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ocfs2/cluster/sys.c b/fs/ocfs2/cluster/sys.c
index f1e99461bb0d..1d9f6acafa2e 100644
--- a/fs/ocfs2/cluster/sys.c
+++ b/fs/ocfs2/cluster/sys.c
@@ -50,7 +50,7 @@ static ssize_t o2cb_interface_revision_show(char *buf)
return snprintf(buf, PAGE_SIZE, "%u\n", O2NM_API_VERSION);
}
-O2CB_ATTR(interface_revision, S_IFREG | S_IRUGO, o2cb_interface_revision_show, NULL);
+static O2CB_ATTR(interface_revision, S_IFREG | S_IRUGO, o2cb_interface_revision_show, NULL);
static struct attribute *o2cb_attrs[] = {
&o2cb_attr_interface_revision.attr,
@@ -73,7 +73,7 @@ static struct kobj_type o2cb_subsys_type = {
};
/* gives us o2cb_subsys */
-decl_subsys(o2cb, NULL, NULL);
+static decl_subsys(o2cb, NULL, NULL);
static ssize_t
o2cb_show(struct kobject * kobj, struct attribute * attr, char * buffer)