diff options
Diffstat (limited to 'fs/ocfs2/dir.h')
-rw-r--r-- | fs/ocfs2/dir.h | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/fs/ocfs2/dir.h b/fs/ocfs2/dir.h index 505d3af9bba5..d273aaef2ec2 100644 --- a/fs/ocfs2/dir.h +++ b/fs/ocfs2/dir.h | |||
@@ -26,9 +26,21 @@ | |||
26 | #ifndef OCFS2_DIR_H | 26 | #ifndef OCFS2_DIR_H |
27 | #define OCFS2_DIR_H | 27 | #define OCFS2_DIR_H |
28 | 28 | ||
29 | struct ocfs2_dx_hinfo { | ||
30 | u32 major_hash; | ||
31 | u32 minor_hash; | ||
32 | }; | ||
33 | |||
29 | struct ocfs2_dir_lookup_result { | 34 | struct ocfs2_dir_lookup_result { |
30 | struct buffer_head *dl_leaf_bh; | 35 | struct buffer_head *dl_leaf_bh; /* Unindexed leaf |
31 | struct ocfs2_dir_entry *dl_entry; | 36 | * block */ |
37 | struct ocfs2_dir_entry *dl_entry; /* Target dirent in | ||
38 | * unindexed leaf */ | ||
39 | |||
40 | struct buffer_head *dl_dx_leaf_bh; /* Indexed leaf block */ | ||
41 | struct ocfs2_dx_entry *dl_dx_entry; /* Target dx_entry in | ||
42 | * indexed leaf */ | ||
43 | struct ocfs2_dx_hinfo dl_hinfo; /* Name hash results */ | ||
32 | }; | 44 | }; |
33 | void ocfs2_free_dir_lookup_result(struct ocfs2_dir_lookup_result *res); | 45 | void ocfs2_free_dir_lookup_result(struct ocfs2_dir_lookup_result *res); |
34 | 46 | ||
@@ -85,7 +97,10 @@ int ocfs2_fill_new_dir(struct ocfs2_super *osb, | |||
85 | struct inode *parent, | 97 | struct inode *parent, |
86 | struct inode *inode, | 98 | struct inode *inode, |
87 | struct buffer_head *fe_bh, | 99 | struct buffer_head *fe_bh, |
88 | struct ocfs2_alloc_context *data_ac); | 100 | struct ocfs2_alloc_context *data_ac, |
101 | struct ocfs2_alloc_context *meta_ac); | ||
102 | |||
103 | int ocfs2_dx_dir_truncate(struct inode *dir, struct buffer_head *di_bh); | ||
89 | 104 | ||
90 | struct ocfs2_dir_block_trailer *ocfs2_dir_trailer_from_size(int blocksize, | 105 | struct ocfs2_dir_block_trailer *ocfs2_dir_trailer_from_size(int blocksize, |
91 | void *data); | 106 | void *data); |