]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: lustre: obdclass: lprocfs_status: Declare local functions as static
authorShraddha Barke <shraddha.6596@gmail.com>
Fri, 9 Oct 2015 17:10:07 +0000 (22:40 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 12 Oct 2015 23:43:24 +0000 (16:43 -0700)
Declare lustre_attr_show and lustre_attr_store as static
since they are used only in this particular file. Also remove them from
corresponding header files.

Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/include/lprocfs_status.h
drivers/staging/lustre/lustre/obdclass/lprocfs_status.c

index 22f3777c72b8f81d3808a83e8bce76fda516735f..6d127a0c18295891b57b41bd65f9246adc678204 100644 (file)
@@ -713,11 +713,6 @@ static struct lustre_attr lustre_attr_##name = __ATTR(name, mode, show, store)
 #define LUSTRE_RO_ATTR(name) LUSTRE_ATTR(name, 0444, name##_show, NULL)
 #define LUSTRE_RW_ATTR(name) LUSTRE_ATTR(name, 0644, name##_show, name##_store)
 
-ssize_t lustre_attr_show(struct kobject *kobj, struct attribute *attr,
-                        char *buf);
-ssize_t lustre_attr_store(struct kobject *kobj, struct attribute *attr,
-                         const char *buf, size_t len);
-
 extern const struct sysfs_ops lustre_sysfs_ops;
 
 /* all quota proc functions */
index da4afe08ca62a9f9ec960009ae34ecec39997259..c8a5ff4971434960152334be387fdb51877fe4b8 100644 (file)
@@ -1467,23 +1467,21 @@ void lprocfs_oh_clear(struct obd_histogram *oh)
 }
 EXPORT_SYMBOL(lprocfs_oh_clear);
 
-ssize_t lustre_attr_show(struct kobject *kobj,
-                        struct attribute *attr, char *buf)
+static ssize_t lustre_attr_show(struct kobject *kobj,
+                               struct attribute *attr, char *buf)
 {
        struct lustre_attr *a = container_of(attr, struct lustre_attr, attr);
 
        return a->show ? a->show(kobj, attr, buf) : 0;
 }
-EXPORT_SYMBOL_GPL(lustre_attr_show);
 
-ssize_t lustre_attr_store(struct kobject *kobj, struct attribute *attr,
-                         const char *buf, size_t len)
+static ssize_t lustre_attr_store(struct kobject *kobj, struct attribute *attr,
+                                const char *buf, size_t len)
 {
        struct lustre_attr *a = container_of(attr, struct lustre_attr, attr);
 
        return a->store ? a->store(kobj, attr, buf, len) : len;
 }
-EXPORT_SYMBOL_GPL(lustre_attr_store);
 
 const struct sysfs_ops lustre_sysfs_ops = {
        .show  = lustre_attr_show,