diff options
Diffstat (limited to 'fs/ext4/xattr.h')
-rw-r--r-- | fs/ext4/xattr.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fs/ext4/xattr.h b/fs/ext4/xattr.h index db5672206238..7095ac13fbc2 100644 --- a/fs/ext4/xattr.h +++ b/fs/ext4/xattr.h | |||
@@ -150,6 +150,10 @@ extern int ext4_write_inline_data_end(struct inode *inode, | |||
150 | loff_t pos, unsigned len, | 150 | loff_t pos, unsigned len, |
151 | unsigned copied, | 151 | unsigned copied, |
152 | struct page *page); | 152 | struct page *page); |
153 | extern struct buffer_head * | ||
154 | ext4_journalled_write_inline_data(struct inode *inode, | ||
155 | unsigned len, | ||
156 | struct page *page); | ||
153 | # else /* CONFIG_EXT4_FS_XATTR */ | 157 | # else /* CONFIG_EXT4_FS_XATTR */ |
154 | 158 | ||
155 | static inline int | 159 | static inline int |
@@ -288,6 +292,14 @@ static inline int ext4_write_inline_data_end(struct inode *inode, | |||
288 | { | 292 | { |
289 | return 0; | 293 | return 0; |
290 | } | 294 | } |
295 | |||
296 | static inline struct buffer_head * | ||
297 | ext4_journalled_write_inline_data(struct inode *inode, | ||
298 | unsigned len, | ||
299 | struct page *page) | ||
300 | { | ||
301 | return NULL; | ||
302 | } | ||
291 | # endif /* CONFIG_EXT4_FS_XATTR */ | 303 | # endif /* CONFIG_EXT4_FS_XATTR */ |
292 | 304 | ||
293 | #ifdef CONFIG_EXT4_FS_SECURITY | 305 | #ifdef CONFIG_EXT4_FS_SECURITY |