blob: ffcf0210545c8b0945339d2f57797059a73c4c9a [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Masahiro Yamadafa60ce22021-05-06 18:06:44 -07002/*
Mark Fashehccd979b2005-12-15 14:31:24 -08003 * symlink.h
4 *
5 * Function prototypes
6 *
7 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
Mark Fashehccd979b2005-12-15 14:31:24 -08008 */
9
10#ifndef OCFS2_SYMLINK_H
11#define OCFS2_SYMLINK_H
12
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080013extern const struct inode_operations ocfs2_symlink_inode_operations;
Al Viroea022dfb2012-05-03 10:14:29 -040014extern const struct address_space_operations ocfs2_fast_symlink_aops;
Mark Fashehccd979b2005-12-15 14:31:24 -080015
16/*
17 * Test whether an inode is a fast symlink.
18 */
19static inline int ocfs2_inode_is_fast_symlink(struct inode *inode)
20{
21 return (S_ISLNK(inode->i_mode) &&
22 inode->i_blocks == 0);
23}
24
25
26#endif /* OCFS2_SYMLINK_H */