1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2020-2022, Red Hat, Inc.
4 * All Rights Reserved.
5 */
6#ifndef XFS_IUNLINK_ITEM_H
7#define XFS_IUNLINK_ITEM_H	1
8
9struct xfs_trans;
10struct xfs_inode;
11struct xfs_perag;
12
13/* in memory log item structure */
14struct xfs_iunlink_item {
15	struct xfs_log_item	item;
16	struct xfs_inode	*ip;
17	struct xfs_perag	*pag;
18	xfs_agino_t		next_agino;
19	xfs_agino_t		old_agino;
20};
21
22extern struct kmem_cache *xfs_iunlink_cache;
23
24int xfs_iunlink_log_inode(struct xfs_trans *tp, struct xfs_inode *ip,
25			struct xfs_perag *pag, xfs_agino_t next_agino);
26
27#endif	/* XFS_IUNLINK_ITEM_H */
28