diff options
author | Dave Chinner <dchinner@redhat.com> | 2014-12-04 01:42:40 +0300 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-12-04 01:42:40 +0300 |
commit | cdc9cec7c0ff521edf8c0e9c9432bf8fdccfc702 (patch) | |
tree | acd304dac9fdf77f3bdcfaf3bb903a2f0689d4e7 /fs/xfs/xfs_super.c | |
parent | 4db431f57be2d32f35f46023b0c0d9f8b6e06e26 (diff) | |
download | linux-cdc9cec7c0ff521edf8c0e9c9432bf8fdccfc702.tar.xz |
xfs: active inodes stat is broken
vn_active only ever gets decremented, so it has a very large
negative number. Make it track the inode count we currently have
allocated properly so we can easily track the size of the inode
cache via tools like PCP.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r-- | fs/xfs/xfs_super.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index a0f58d933261..45fa5b570eb5 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -1008,7 +1008,6 @@ xfs_fs_evict_inode( clear_inode(inode); XFS_STATS_INC(vn_rele); XFS_STATS_INC(vn_remove); - XFS_STATS_DEC(vn_active); xfs_inactive(ip); } |