mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-27 16:54:23 +00:00
Move the project id get and set functions into libxfs. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
17 lines
508 B
C
17 lines
508 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
#ifndef __XFS_INODE_UTIL_H__
|
|
#define __XFS_INODE_UTIL_H__
|
|
|
|
uint16_t xfs_flags2diflags(struct xfs_inode *ip, unsigned int xflags);
|
|
uint64_t xfs_flags2diflags2(struct xfs_inode *ip, unsigned int xflags);
|
|
uint32_t xfs_dic2xflags(struct xfs_inode *ip);
|
|
uint32_t xfs_ip2xflags(struct xfs_inode *ip);
|
|
|
|
prid_t xfs_get_initial_prid(struct xfs_inode *dp);
|
|
|
|
#endif /* __XFS_INODE_UTIL_H__ */
|