2019-05-24 18:04:05 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2021-05-07 09:06:44 +08:00
|
|
|
/*
|
2005-12-16 06:31:24 +08:00
|
|
|
* symlink.h
|
|
|
|
*
|
|
|
|
* Function prototypes
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002, 2004 Oracle. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OCFS2_SYMLINK_H
|
|
|
|
#define OCFS2_SYMLINK_H
|
|
|
|
|
2007-02-12 16:55:39 +08:00
|
|
|
extern const struct inode_operations ocfs2_symlink_inode_operations;
|
2012-05-03 22:14:29 +08:00
|
|
|
extern const struct address_space_operations ocfs2_fast_symlink_aops;
|
2005-12-16 06:31:24 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test whether an inode is a fast symlink.
|
|
|
|
*/
|
|
|
|
static inline int ocfs2_inode_is_fast_symlink(struct inode *inode)
|
|
|
|
{
|
|
|
|
return (S_ISLNK(inode->i_mode) &&
|
|
|
|
inode->i_blocks == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* OCFS2_SYMLINK_H */
|