diff options
| author | 2021-03-29 11:11:37 -0700 | |
|---|---|---|
| committer | 2021-04-07 14:37:02 -0700 | |
| commit | 4cb6f2e8c2c78c28941c56f49f2d9de44705b211 (patch) | |
| tree | 99511e5a0a7764dc31e98a65e68895c06f9b213f /fs/xfs/xfs_inode.c | |
| parent | xfs: split xfs_imap_to_bp (diff) | |
| download | linux-dev-4cb6f2e8c2c78c28941c56f49f2d9de44705b211.tar.xz linux-dev-4cb6f2e8c2c78c28941c56f49f2d9de44705b211.zip | |
xfs: consistently initialize di_flags2
Make sure di_flags2 is always initialized. We currently get this implicitly
by clearing the dinode core on allocating the in-core inode, but that is
about to go away.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_inode.c')
| -rw-r--r-- | fs/xfs/xfs_inode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index 8983ef05dc66..8c164fe62154 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -846,7 +846,6 @@ xfs_init_new_inode( if (xfs_sb_version_has_v3inode(&mp->m_sb)) { inode_set_iversion(inode, 1); - ip->i_d.di_flags2 = mp->m_ino_geo.new_diflags2; ip->i_d.di_cowextsize = 0; ip->i_d.di_crtime = tv; } |
