xfs_symlink.h 517 B

12345678910111213141516
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2012 Red Hat, Inc. All rights reserved.
  4. */
  5. #ifndef __XFS_SYMLINK_H
  6. #define __XFS_SYMLINK_H 1
  7. /* Kernel only symlink definitions */
  8. int xfs_symlink(struct xfs_inode *dp, struct xfs_name *link_name,
  9. const char *target_path, umode_t mode, struct xfs_inode **ipp);
  10. int xfs_readlink_bmap_ilocked(struct xfs_inode *ip, char *link);
  11. int xfs_readlink(struct xfs_inode *ip, char *link);
  12. int xfs_inactive_symlink(struct xfs_inode *ip);
  13. #endif /* __XFS_SYMLINK_H */