aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/xattr.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4/xattr.h')
-rw-r--r--fs/ext4/xattr.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/ext4/xattr.h b/fs/ext4/xattr.h
index 397ef4bbaf1e..539e6a08c95f 100644
--- a/fs/ext4/xattr.h
+++ b/fs/ext4/xattr.h
@@ -168,6 +168,9 @@ extern int ext4_try_add_inline_entry(handle_t *handle, struct dentry *dentry,
168extern int ext4_try_create_inline_dir(handle_t *handle, 168extern int ext4_try_create_inline_dir(handle_t *handle,
169 struct inode *parent, 169 struct inode *parent,
170 struct inode *inode); 170 struct inode *inode);
171extern int ext4_read_inline_dir(struct file *filp,
172 void *dirent, filldir_t filldir,
173 int *has_inline_data);
171# else /* CONFIG_EXT4_FS_XATTR */ 174# else /* CONFIG_EXT4_FS_XATTR */
172 175
173static inline int 176static inline int
@@ -346,6 +349,12 @@ static inline int ext4_try_create_inline_dir(handle_t *handle,
346{ 349{
347 return 0; 350 return 0;
348} 351}
352static inline int ext4_read_inline_dir(struct file *filp,
353 void *dirent, filldir_t filldir,
354 int *has_inline_data)
355{
356 return 0;
357}
349# endif /* CONFIG_EXT4_FS_XATTR */ 358# endif /* CONFIG_EXT4_FS_XATTR */
350 359
351#ifdef CONFIG_EXT4_FS_SECURITY 360#ifdef CONFIG_EXT4_FS_SECURITY