summaryrefslogtreecommitdiffstats
path: root/fs/ext4/xattr.h
diff options
context:
space:
mode:
authorTao Ma <boyu.mt@taobao.com>2012-12-10 14:06:00 -0500
committerTheodore Ts'o <tytso@mit.edu>2012-12-10 14:06:00 -0500
commite8e948e7802a2ab05c146d3e72a39b93b5718236 (patch)
tree3e6914f6b16c457e0d14cee75bf0149f730bbd99 /fs/ext4/xattr.h
parent7335cd3b41b1e704608ca46159641ca9cb598121 (diff)
ext4: let ext4_find_entry handle inline data
Create a new function ext4_find_inline_entry() to handle the case of inline data. Signed-off-by: Tao Ma <boyu.mt@taobao.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/xattr.h')
-rw-r--r--fs/ext4/xattr.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/ext4/xattr.h b/fs/ext4/xattr.h
index 539e6a08c95f..c6f3dea88d6f 100644
--- a/fs/ext4/xattr.h
+++ b/fs/ext4/xattr.h
@@ -171,6 +171,10 @@ extern int ext4_try_create_inline_dir(handle_t *handle,
171extern int ext4_read_inline_dir(struct file *filp, 171extern int ext4_read_inline_dir(struct file *filp,
172 void *dirent, filldir_t filldir, 172 void *dirent, filldir_t filldir,
173 int *has_inline_data); 173 int *has_inline_data);
174extern struct buffer_head *ext4_find_inline_entry(struct inode *dir,
175 const struct qstr *d_name,
176 struct ext4_dir_entry_2 **res_dir,
177 int *has_inline_data);
174# else /* CONFIG_EXT4_FS_XATTR */ 178# else /* CONFIG_EXT4_FS_XATTR */
175 179
176static inline int 180static inline int
@@ -355,6 +359,15 @@ static inline int ext4_read_inline_dir(struct file *filp,
355{ 359{
356 return 0; 360 return 0;
357} 361}
362
363static inline struct buffer_head *
364ext4_find_inline_entry(struct inode *dir,
365 const struct qstr *d_name,
366 struct ext4_dir_entry_2 **res_dir,
367 int *has_inline_data)
368{
369 return NULL;
370}
358# endif /* CONFIG_EXT4_FS_XATTR */ 371# endif /* CONFIG_EXT4_FS_XATTR */
359 372
360#ifdef CONFIG_EXT4_FS_SECURITY 373#ifdef CONFIG_EXT4_FS_SECURITY