Loading...
1/*
2 * Copyright (c) 2012 Red Hat, Inc. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write the Free Software Foundation,
15 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17#ifndef __XFS_SYMLINK_H
18#define __XFS_SYMLINK_H 1
19
20/* Kernel only symlink defintions */
21
22int xfs_symlink(struct xfs_inode *dp, struct xfs_name *link_name,
23 const char *target_path, umode_t mode, struct xfs_inode **ipp);
24int xfs_readlink_bmap_ilocked(struct xfs_inode *ip, char *link);
25int xfs_readlink(struct xfs_inode *ip, char *link);
26int xfs_inactive_symlink(struct xfs_inode *ip);
27
28#endif /* __XFS_SYMLINK_H */
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
8/* Kernel only symlink definitions */
9
10int xfs_symlink(struct mnt_idmap *idmap, struct xfs_inode *dp,
11 struct xfs_name *link_name, const char *target_path,
12 umode_t mode, struct xfs_inode **ipp);
13int xfs_readlink_bmap_ilocked(struct xfs_inode *ip, char *link);
14int xfs_readlink(struct xfs_inode *ip, char *link);
15int xfs_inactive_symlink(struct xfs_inode *ip);
16
17#endif /* __XFS_SYMLINK_H */