diff options
author | Dave Chinner <david@fromorbit.com> | 2014-05-20 08:57:02 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-05-20 08:57:02 +1000 |
commit | b70f14e1ffbb47369b1cc2cdf558c3468ae9e484 (patch) | |
tree | cccbdd2422a7338a8185eb83493ffac3bb4ddaa9 /fs/xfs/xfs_ioctl.c | |
parent | 0d907a3bb4a77cffebebd17c323e898048301aa3 (diff) | |
parent | ab3e57b53f549ad51cbdf85e846ca4eaf0f3be30 (diff) | |
download | talos-obmc-linux-b70f14e1ffbb47369b1cc2cdf558c3468ae9e484.tar.gz talos-obmc-linux-b70f14e1ffbb47369b1cc2cdf558c3468ae9e484.zip |
Merge branch 'xfs-feature-bit-cleanup' into for-next
Conflicts:
fs/xfs/xfs_inode.c
Diffstat (limited to 'fs/xfs/xfs_ioctl.c')
-rw-r--r-- | fs/xfs/xfs_ioctl.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c index 2d8f4fdf07f9..55724c8b204b 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c @@ -1228,15 +1228,8 @@ xfs_ioctl_setattr( olddquot = xfs_qm_vop_chown(tp, ip, &ip->i_pdquot, pdqp); } + ASSERT(ip->i_d.di_version > 1); xfs_set_projid(ip, fa->fsx_projid); - - /* - * We may have to rev the inode as well as - * the superblock version number since projids didn't - * exist before DINODE_VERSION_2 and SB_VERSION_NLINK. - */ - if (ip->i_d.di_version == 1) - xfs_bump_ino_vers2(tp, ip); } } |