blob: 54d584eddf2962f2b6443fd4d62aa17e0cddf039 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#ifndef __INODE_DOT_H__
11#define __INODE_DOT_H__
12
13static inline int gfs2_is_stuffed(struct gfs2_inode *ip)
14{
15 return !ip->i_di.di_height;
16}
17
18static inline int gfs2_is_jdata(struct gfs2_inode *ip)
19{
20 return ip->i_di.di_flags & GFS2_DIF_JDATA;
21}
22
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000023static inline int gfs2_is_dir(struct gfs2_inode *ip)
24{
Steven Whitehouseb60623c2006-11-01 12:22:46 -050025 return S_ISDIR(ip->i_inode.i_mode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000026}
27
David Teiglandb3b94fa2006-01-16 16:50:04 +000028void gfs2_inode_attr_in(struct gfs2_inode *ip);
Al Viro629a21e2006-10-13 22:51:24 -040029struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum_host *inum, unsigned type);
30struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum_host *inum);
David Teiglandb3b94fa2006-01-16 16:50:04 +000031
David Teiglandb3b94fa2006-01-16 16:50:04 +000032int gfs2_inode_refresh(struct gfs2_inode *ip);
33
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040034int gfs2_dinode_dealloc(struct gfs2_inode *inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000035int gfs2_change_nlink(struct gfs2_inode *ip, int diff);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -040036struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040037 int is_root, struct nameidata *nd);
38struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -050039 unsigned int mode, dev_t dev);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040040int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
41 struct gfs2_inode *ip);
42int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +000043 struct gfs2_inode *ip);
44int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to);
45int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len);
46
47int gfs2_glock_nq_atime(struct gfs2_holder *gh);
48int gfs2_glock_nq_m_atime(unsigned int num_gh, struct gfs2_holder *ghs);
49
David Teiglandb3b94fa2006-01-16 16:50:04 +000050int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr);
51
Steven Whitehousec7526662006-03-20 12:30:04 -050052struct inode *gfs2_lookup_simple(struct inode *dip, const char *name);
David Teiglandb3b94fa2006-01-16 16:50:04 +000053
54#endif /* __INODE_DOT_H__ */
55