Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.19-rc8 27 lines 611 B view raw
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 */