diff options
author | Christoph Hellwig <hch@lst.de> | 2021-03-29 11:11:37 -0700 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-04-07 14:37:02 -0700 |
commit | 4cb6f2e8c2c78c28941c56f49f2d9de44705b211 (patch) | |
tree | 99511e5a0a7764dc31e98a65e68895c06f9b213f /fs/xfs/xfs_icache.c | |
parent | af9dcddef662e1437a63c2decb6e1e2efb7d81ea (diff) | |
download | linux-4cb6f2e8c2c78c28941c56f49f2d9de44705b211.tar.bz2 |
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_icache.c')
-rw-r--r-- | fs/xfs/xfs_icache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c index 248c42bf212d..54d483ea34c8 100644 --- a/fs/xfs/xfs_icache.c +++ b/fs/xfs/xfs_icache.c @@ -64,6 +64,7 @@ xfs_inode_alloc( ip->i_flags = 0; ip->i_delayed_blks = 0; memset(&ip->i_d, 0, sizeof(ip->i_d)); + ip->i_d.di_flags2 = mp->m_ino_geo.new_diflags2; ip->i_sick = 0; ip->i_checked = 0; INIT_WORK(&ip->i_ioend_work, xfs_end_io); |