提交 e94af02a 编写于 作者: E Eric Sandeen 提交者: Nathan Scott

[XFS] fix old xfs_setattr mis-merge from irix; mostly harmless esp if not

using xfs rt

SGI-PV: 944632
SGI-Modid: xfs-linux:xfs-kern:200983a
Signed-off-by: NEric Sandeen <sandeen@sgi.com>
Signed-off-by: NNathan Scott <nathans@sgi.com>
上级 91e11088
...@@ -533,8 +533,7 @@ xfs_setattr( ...@@ -533,8 +533,7 @@ xfs_setattr(
/* /*
* Can't change extent size if any extents are allocated. * Can't change extent size if any extents are allocated.
*/ */
if ((ip->i_d.di_nextents || ip->i_delayed_blks) && if (ip->i_d.di_nextents && (mask & XFS_AT_EXTSIZE) &&
(mask & XFS_AT_EXTSIZE) &&
((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
vap->va_extsize) ) { vap->va_extsize) ) {
code = XFS_ERROR(EINVAL); /* EFBIG? */ code = XFS_ERROR(EINVAL); /* EFBIG? */
...@@ -562,7 +561,8 @@ xfs_setattr( ...@@ -562,7 +561,8 @@ xfs_setattr(
/* /*
* Can't change realtime flag if any extents are allocated. * Can't change realtime flag if any extents are allocated.
*/ */
if (ip->i_d.di_nextents && (mask & XFS_AT_XFLAGS) && if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
(mask & XFS_AT_XFLAGS) &&
(ip->i_d.di_flags & XFS_DIFLAG_REALTIME) != (ip->i_d.di_flags & XFS_DIFLAG_REALTIME) !=
(vap->va_xflags & XFS_XFLAG_REALTIME)) { (vap->va_xflags & XFS_XFLAG_REALTIME)) {
code = XFS_ERROR(EINVAL); /* EFBIG? */ code = XFS_ERROR(EINVAL); /* EFBIG? */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册