diff options
author | Bill O'Donnell <billodo@redhat.com> | 2015-10-12 05:16:45 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-10-12 05:16:45 +1100 |
commit | 32f0ea05219e5212cafcbeaa255e627314f87e7e (patch) | |
tree | b73a7d4e680dc99619414e5aeef8aaac640fa90d /fs/xfs/xfs_stats.c | |
parent | bb230c124730f21eea13deab433f9f8fc96bd5f3 (diff) | |
download | linux-stable-32f0ea05219e5212cafcbeaa255e627314f87e7e.tar.gz linux-stable-32f0ea05219e5212cafcbeaa255e627314f87e7e.tar.bz2 linux-stable-32f0ea05219e5212cafcbeaa255e627314f87e7e.zip |
xfs: create symlink proc/fs/xfs/stat to sys/fs/xfs/stats
As a part of the work to move xfs global stats from procfs to sysfs,
this patch creates the symlink from proc/fs/xfs/stat to sys/fs/xfs/stats.
Signed-off-by: Bill O'Donnell <billodo@redhat.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_stats.c')
-rw-r--r-- | fs/xfs/xfs_stats.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/xfs/xfs_stats.c b/fs/xfs/xfs_stats.c index e19b84a327d1..e6efebbdb793 100644 --- a/fs/xfs/xfs_stats.c +++ b/fs/xfs/xfs_stats.c @@ -243,9 +243,10 @@ xfs_init_procfs(void) if (!proc_mkdir("fs/xfs", NULL)) goto out; - if (!proc_create("fs/xfs/stat", 0, NULL, - &xfs_stat_proc_fops)) + if (!proc_symlink("fs/xfs/stat", NULL, + "/sys/fs/xfs/stats/stats")) goto out_remove_xfs_dir; + #ifdef CONFIG_XFS_QUOTA if (!proc_create("fs/xfs/xqmstat", 0, NULL, &xqmstat_proc_fops)) |