inode.h (23930fa1cebfea6f79881c588ccd1b0781e49e3f) inode.h (24c19ef40474c3930597f31ae233dc06319bd881)
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * inode.h
5 *
6 * Function prototypes
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.

--- 108 unchanged lines hidden (view full) ---

117
118extern const struct address_space_operations ocfs2_aops;
119
120struct buffer_head *ocfs2_bread(struct inode *inode, int block,
121 int *err, int reada);
122void ocfs2_clear_inode(struct inode *inode);
123void ocfs2_delete_inode(struct inode *inode);
124void ocfs2_drop_inode(struct inode *inode);
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * inode.h
5 *
6 * Function prototypes
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.

--- 108 unchanged lines hidden (view full) ---

117
118extern const struct address_space_operations ocfs2_aops;
119
120struct buffer_head *ocfs2_bread(struct inode *inode, int block,
121 int *err, int reada);
122void ocfs2_clear_inode(struct inode *inode);
123void ocfs2_delete_inode(struct inode *inode);
124void ocfs2_drop_inode(struct inode *inode);
125struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 feoff);
125
126/* Flags for ocfs2_iget() */
127#define OCFS2_FI_FLAG_NOWAIT 0x1
128#define OCFS2_FI_FLAG_DELETE 0x2
129#define OCFS2_FI_FLAG_SYSFILE 0x4
130#define OCFS2_FI_FLAG_NOLOCK 0x8
131struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 feoff, int flags);
126struct inode *ocfs2_ilookup_for_vote(struct ocfs2_super *osb,
127 u64 blkno,
128 int delete_vote);
129int ocfs2_inode_init_private(struct inode *inode);
130int ocfs2_inode_revalidate(struct dentry *dentry);
131int ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
132 int create_ino);
133void ocfs2_read_inode(struct inode *inode);

--- 15 unchanged lines hidden ---
132struct inode *ocfs2_ilookup_for_vote(struct ocfs2_super *osb,
133 u64 blkno,
134 int delete_vote);
135int ocfs2_inode_init_private(struct inode *inode);
136int ocfs2_inode_revalidate(struct dentry *dentry);
137int ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
138 int create_ino);
139void ocfs2_read_inode(struct inode *inode);

--- 15 unchanged lines hidden ---