diff options
author | Christoph Hellwig <hch@lst.de> | 2021-03-29 20:11:44 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-04-07 23:37:05 +0200 |
commit | 7821ea302dca72469c558e382d6e4ae09232b7a7 (patch) | |
tree | 3c60c2c63336b6b30a75f205318ef5ff3c581732 /fs/xfs/xfs_inode.h | |
parent | xfs: use a union for i_cowextsize and i_flushiter (diff) | |
download | linux-7821ea302dca72469c558e382d6e4ae09232b7a7.tar.xz linux-7821ea302dca72469c558e382d6e4ae09232b7a7.zip |
xfs: move the di_forkoff field to struct xfs_inode
In preparation of removing the historic icinode struct, move the
forkoff 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 7a877db8ac56..5e16098bdbcf 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h @@ -63,6 +63,7 @@ typedef struct xfs_inode { xfs_extlen_t i_cowextsize; /* basic cow extent size */ uint16_t i_flushiter; /* incremented on flush */ }; + uint8_t i_forkoff; /* attr fork offset >> 3 */ struct xfs_icdinode i_d; /* most of ondisk inode */ |