diff options
author | Christoph Hellwig <hch@lst.de> | 2021-03-29 20:11:41 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-04-07 23:37:04 +0200 |
commit | 031474c28a3a9a2772a715d1ec9770f9068ea5a4 (patch) | |
tree | 4c39e02e8cb8a63badcece900cc434794120e4e6 /fs/xfs/xfs_inode.h | |
parent | xfs: move the di_nblocks field to struct xfs_inode (diff) | |
download | linux-031474c28a3a9a2772a715d1ec9770f9068ea5a4.tar.xz linux-031474c28a3a9a2772a715d1ec9770f9068ea5a4.zip |
xfs: move the di_extsize field to struct xfs_inode
In preparation of removing the historic icinode struct, move the extsize
field into the containing xfs_inode structure.
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.h')
-rw-r--r-- | fs/xfs/xfs_inode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index 687bb41f7da4..0d4ed6889680 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h @@ -57,6 +57,7 @@ typedef struct xfs_inode { xfs_fsize_t i_disk_size; /* number of bytes in file */ xfs_rfsblock_t i_nblocks; /* # of direct & btree blocks */ prid_t i_projid; /* owner's project id */ + xfs_extlen_t i_extsize; /* basic/minimum extent size */ struct xfs_icdinode i_d; /* most of ondisk inode */ |