diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-04-15 23:54:49 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-04-15 23:58:54 +0200 |
commit | e921533ef1a610ae92319269bd8e41ab09bf09c4 (patch) | |
tree | da55b96adfa7f80935f7342f7909a59a22d2fa28 /fs/xfs/xfs_inode.h | |
parent | xfs: create an xattr iteration function for scrub (diff) | |
download | linux-e921533ef1a610ae92319269bd8e41ab09bf09c4.tar.xz linux-e921533ef1a610ae92319269bd8e41ab09bf09c4.zip |
xfs: ensure unlinked list state is consistent with nlink during scrub
Now that we have the means to tell if an inode is on an unlinked inode
list or not, we can check that an inode with zero link count is on the
unlinked list; and an inode that has nonzero link count is not on that
list. Make repair clean things up too.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_inode.h')
-rw-r--r-- | fs/xfs/xfs_inode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index 596eec715675..8157ae7f8e59 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h @@ -617,6 +617,8 @@ extern struct kmem_cache *xfs_inode_cache; bool xfs_inode_needs_inactive(struct xfs_inode *ip); int xfs_iunlink(struct xfs_trans *tp, struct xfs_inode *ip); +int xfs_iunlink_remove(struct xfs_trans *tp, struct xfs_perag *pag, + struct xfs_inode *ip); void xfs_end_io(struct work_struct *work); |