diff options
author | Dave Chinner <dchinner@redhat.com> | 2016-02-09 16:54:58 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-02-09 16:54:58 +1100 |
commit | 54d7b5c1d03e9711cce2d72237d5b3f5c87431f4 (patch) | |
tree | 217051439807a7bc0fba823d0319c7a5900cc2c3 /fs/xfs/xfs_icache.c | |
parent | 50997470ef95fd8ae0ef6acab3b2e1d886ae2445 (diff) | |
download | linux-stable-54d7b5c1d03e9711cce2d72237d5b3f5c87431f4.tar.gz linux-stable-54d7b5c1d03e9711cce2d72237d5b3f5c87431f4.tar.bz2 linux-stable-54d7b5c1d03e9711cce2d72237d5b3f5c87431f4.zip |
xfs: use vfs inode nlink field everywhere
The VFS tracks the inode nlink just like the xfs_icdinode. We can
remove the variable from the icdinode and use the VFS inode variable
everywhere, reducing the size of the xfs_icdinode by a further 4
bytes.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_icache.c')
-rw-r--r-- | fs/xfs/xfs_icache.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c index 9ca2865575ab..4c184f70d43c 100644 --- a/fs/xfs/xfs_icache.c +++ b/fs/xfs/xfs_icache.c @@ -148,9 +148,11 @@ xfs_reinit_inode( struct inode *inode) { int error; + uint32_t nlink = inode->i_nlink; error = inode_init_always(mp->m_super, inode); + set_nlink(inode, nlink); return error; } |