brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · c1672fe Raw
29 lines · c
1// SPDX-License-Identifier: GPL-2.02/*3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.4 * Copyright (c) 2013 Red Hat, Inc.5 * All Rights Reserved.6 */7#ifndef __XFS_SYMLINK_REMOTE_H8#define __XFS_SYMLINK_REMOTE_H9 10/*11 * Symlink decoding/encoding functions12 */13int xfs_symlink_blocks(struct xfs_mount *mp, int pathlen);14int xfs_symlink_hdr_set(struct xfs_mount *mp, xfs_ino_t ino, uint32_t offset,15			uint32_t size, struct xfs_buf *bp);16bool xfs_symlink_hdr_ok(xfs_ino_t ino, uint32_t offset,17			uint32_t size, struct xfs_buf *bp);18void xfs_symlink_local_to_remote(struct xfs_trans *tp, struct xfs_buf *bp,19				 struct xfs_inode *ip, struct xfs_ifork *ifp,20				 void *priv);21xfs_failaddr_t xfs_symlink_shortform_verify(void *sfp, int64_t size);22int xfs_symlink_remote_read(struct xfs_inode *ip, char *link);23int xfs_symlink_write_target(struct xfs_trans *tp, struct xfs_inode *ip,24		xfs_ino_t owner, const char *target_path, int pathlen,25		xfs_fsblock_t fs_blocks, uint resblks);26int xfs_symlink_remote_truncate(struct xfs_trans *tp, struct xfs_inode *ip);27 28#endif /* __XFS_SYMLINK_REMOTE_H */29