aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_ioctl.c
diff options
context:
space:
mode:
authorDave Chinner <dchinner@redhat.com>2014-05-19 17:46:40 -0400
committerDave Chinner <david@fromorbit.com>2014-05-19 17:46:40 -0400
commit263997a6842b27a49f42bd795c5dd12242917b22 (patch)
tree200787e719da8e4e91a04d1235e47538aa4b85eb /fs/xfs/xfs_ioctl.c
parent32bf1deae15b67839a2f0cb233254125be73fc78 (diff)
xfs: turn NLINK feature on by default
mkfs has turned on the XFS_SB_VERSION_NLINKBIT feature bit by default since November 2007. It's about time we simply made the kernel code turn it on by default and so always convert v1 inodes to v2 inodes when reading them in from disk or allocating them. This This removes needless version checks and modification when bumping link counts on inodes, and will take code out of a few common code paths. text data bss dec hex filename 783251 100867 616 884734 d7ffe fs/xfs/xfs.o.orig 782664 100867 616 884147 d7db3 fs/xfs/xfs.o.patched Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_ioctl.c')
-rw-r--r--fs/xfs/xfs_ioctl.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c
index 0b18776b075e..f920d4200207 100644
--- a/fs/xfs/xfs_ioctl.c
+++ b/fs/xfs/xfs_ioctl.c
@@ -1227,15 +1227,8 @@ xfs_ioctl_setattr(
1227 olddquot = xfs_qm_vop_chown(tp, ip, 1227 olddquot = xfs_qm_vop_chown(tp, ip,
1228 &ip->i_pdquot, pdqp); 1228 &ip->i_pdquot, pdqp);
1229 } 1229 }
1230 ASSERT(ip->i_d.di_version > 1);
1230 xfs_set_projid(ip, fa->fsx_projid); 1231 xfs_set_projid(ip, fa->fsx_projid);
1231
1232 /*
1233 * We may have to rev the inode as well as
1234 * the superblock version number since projids didn't
1235 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
1236 */
1237 if (ip->i_d.di_version == 1)
1238 xfs_bump_ino_vers2(tp, ip);
1239 } 1232 }
1240 1233
1241 } 1234 }