aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/dcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ocfs2/dcache.h')
-rw-r--r--fs/ocfs2/dcache.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/fs/ocfs2/dcache.h b/fs/ocfs2/dcache.h
index f1423c2134ee..e53abe766cab 100644
--- a/fs/ocfs2/dcache.h
+++ b/fs/ocfs2/dcache.h
@@ -41,17 +41,17 @@ struct ocfs2_dentry_lock {
41 struct ocfs2_lock_res dl_lockres; 41 struct ocfs2_lock_res dl_lockres;
42}; 42};
43 43
44static inline void ocfs2_dentry_lock_put(struct ocfs2_super *osb, 44int ocfs2_dentry_attach_lock(struct dentry *dentry, struct inode *inode,
45 struct ocfs2_dentry_lock *dl) 45 u64 parent_blkno, int create);
46{ 46
47} 47void ocfs2_dentry_lock_put(struct ocfs2_super *osb,
48 48 struct ocfs2_dentry_lock *dl);
49static inline struct dentry *ocfs2_find_local_alias(struct inode *inode, 49
50 u64 parent_blkno, 50struct dentry *ocfs2_find_local_alias(struct inode *inode, u64 parent_blkno,
51 int skip_unhashed) 51 int skip_unhashed);
52{ 52
53 return NULL; 53void ocfs2_dentry_move(struct dentry *dentry, struct dentry *target,
54} 54 struct inode *old_dir, struct inode *new_dir);
55 55
56extern spinlock_t dentry_attach_lock; 56extern spinlock_t dentry_attach_lock;
57 57