aboutsummaryrefslogtreecommitdiffstats
path: root/fs/orangefs/orangefs-sysfs.c
diff options
context:
space:
mode:
authorMartin Brandenburg <martin@omnibond.com>2016-08-15 15:33:42 -0400
committerMartin Brandenburg <martin@omnibond.com>2016-08-15 15:33:42 -0400
commit889d5f1baca698a4510174cdd6a6596997d0deb4 (patch)
tree2e7778620a3600f42ca815eb324caf14172e48d0 /fs/orangefs/orangefs-sysfs.c
parentorangefs: make devreq_mutex static (diff)
downloadlinux-dev-889d5f1baca698a4510174cdd6a6596997d0deb4.tar.xz
linux-dev-889d5f1baca698a4510174cdd6a6596997d0deb4.zip
orangefs: g_orangefs_stats -> orangefs_stats for consistency
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Diffstat (limited to '')
-rw-r--r--fs/orangefs/orangefs-sysfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/orangefs/orangefs-sysfs.c b/fs/orangefs/orangefs-sysfs.c
index dac2908c0c27..755c37c998cf 100644
--- a/fs/orangefs/orangefs-sysfs.c
+++ b/fs/orangefs/orangefs-sysfs.c
@@ -236,13 +236,13 @@ static ssize_t sysfs_int_show(struct kobject *kobj,
rc = scnprintf(buf,
PAGE_SIZE,
"%lu\n",
- g_orangefs_stats.reads);
+ orangefs_stats.reads);
goto out;
} else if (!strcmp(attr->attr.name, "writes")) {
rc = scnprintf(buf,
PAGE_SIZE,
"%lu\n",
- g_orangefs_stats.writes);
+ orangefs_stats.writes);
goto out;
} else {
goto out;