diff options
author | Martin Brandenburg <martin@omnibond.com> | 2016-08-15 22:33:42 +0300 |
---|---|---|
committer | Martin Brandenburg <martin@omnibond.com> | 2016-08-15 22:33:42 +0300 |
commit | 889d5f1baca698a4510174cdd6a6596997d0deb4 (patch) | |
tree | 2e7778620a3600f42ca815eb324caf14172e48d0 /fs/orangefs/orangefs-sysfs.c | |
parent | a0fe051592f1d31db491bb6cdcc87f512c5b6eaa (diff) | |
download | linux-889d5f1baca698a4510174cdd6a6596997d0deb4.tar.xz |
orangefs: g_orangefs_stats -> orangefs_stats for consistency
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Diffstat (limited to 'fs/orangefs/orangefs-sysfs.c')
-rw-r--r-- | fs/orangefs/orangefs-sysfs.c | 4 |
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; |