fs/xfs/xfs_iunlink_item.h

Source file repositories/reference/linux-study-clean/fs/xfs/xfs_iunlink_item.h

File Facts

System
Linux kernel
Corpus path
fs/xfs/xfs_iunlink_item.h
Extension
.h
Size
611 bytes
Lines
28
Domain
Core OS
Bucket
VFS And Filesystem Core
Inferred role
Core OS: implementation source
Status
source implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

struct xfs_iunlink_item {
	struct xfs_log_item	item;
	struct xfs_inode	*ip;
	struct xfs_perag	*pag;
	xfs_agino_t		next_agino;
	xfs_agino_t		old_agino;
};

extern struct kmem_cache *xfs_iunlink_cache;

int xfs_iunlink_log_inode(struct xfs_trans *tp, struct xfs_inode *ip,
			struct xfs_perag *pag, xfs_agino_t next_agino);

#endif	/* XFS_IUNLINK_ITEM_H */

Annotation

Implementation Notes