Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.20-rc7 16 lines 516 B view raw
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 defintions */ 9 10int xfs_symlink(struct xfs_inode *dp, struct xfs_name *link_name, 11 const char *target_path, umode_t mode, struct xfs_inode **ipp); 12int xfs_readlink_bmap_ilocked(struct xfs_inode *ip, char *link); 13int xfs_readlink(struct xfs_inode *ip, char *link); 14int xfs_inactive_symlink(struct xfs_inode *ip); 15 16#endif /* __XFS_SYMLINK_H */