diff options
| author | Christoph Hellwig <[email protected]> | 2021-03-29 18:11:44 +0000 |
|---|---|---|
| committer | Darrick J. Wong <[email protected]> | 2021-04-07 21:37:05 +0000 |
| commit | db07349da2f564742c0f23528691991e641e315e (patch) | |
| tree | e8805ee646184b3b182b58ad4eabd047a9bc2303 /fs/xfs/xfs_rtalloc.c | |
| parent | xfs: move the di_forkoff field to struct xfs_inode (diff) | |
| download | kernel-db07349da2f564742c0f23528691991e641e315e.tar.gz kernel-db07349da2f564742c0f23528691991e641e315e.zip | |
xfs: move the di_flags field to struct xfs_inode
In preparation of removing the historic icinode struct, move the flags
field into the containing xfs_inode structure.
Signed-off-by: Christoph Hellwig <[email protected]>
Reviewed-by: Darrick J. Wong <[email protected]>
Signed-off-by: Darrick J. Wong <[email protected]>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
| -rw-r--r-- | fs/xfs/xfs_rtalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index 4fa0aed07744..4e7be6b4ca8e 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -1318,8 +1318,8 @@ xfs_rtpick_extent( ASSERT(xfs_isilocked(mp->m_rbmip, XFS_ILOCK_EXCL)); seqp = (uint64_t *)&VFS_I(mp->m_rbmip)->i_atime; - if (!(mp->m_rbmip->i_d.di_flags & XFS_DIFLAG_NEWRTBM)) { - mp->m_rbmip->i_d.di_flags |= XFS_DIFLAG_NEWRTBM; + if (!(mp->m_rbmip->i_diflags & XFS_DIFLAG_NEWRTBM)) { + mp->m_rbmip->i_diflags |= XFS_DIFLAG_NEWRTBM; *seqp = 0; } seq = *seqp; |
