|
@@ -1843,3 +1843,42 @@ out:
|
|
|
ext4_journal_stop(handle);
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
+int ext4_convert_inline_data(struct inode *inode)
|
|
|
+{
|
|
|
+ int error, needed_blocks;
|
|
|
+ handle_t *handle;
|
|
|
+ struct ext4_iloc iloc;
|
|
|
+
|
|
|
+ if (!ext4_has_inline_data(inode)) {
|
|
|
+ ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ needed_blocks = ext4_writepage_trans_blocks(inode);
|
|
|
+
|
|
|
+ iloc.bh = NULL;
|
|
|
+ error = ext4_get_inode_loc(inode, &iloc);
|
|
|
+ if (error)
|
|
|
+ return error;
|
|
|
+
|
|
|
+ handle = ext4_journal_start(inode, needed_blocks);
|
|
|
+ if (IS_ERR(handle)) {
|
|
|
+ error = PTR_ERR(handle);
|
|
|
+ goto out_free;
|
|
|
+ }
|
|
|
+
|
|
|
+ down_write(&EXT4_I(inode)->xattr_sem);
|
|
|
+ if (!ext4_has_inline_data(inode)) {
|
|
|
+ up_write(&EXT4_I(inode)->xattr_sem);
|
|
|
+ goto out;
|
|
|
+ }
|
|
|
+
|
|
|
+ error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
|
|
|
+ up_write(&EXT4_I(inode)->xattr_sem);
|
|
|
+out:
|
|
|
+ ext4_journal_stop(handle);
|
|
|
+out_free:
|
|
|
+ brelse(iloc.bh);
|
|
|
+ return error;
|
|
|
+}
|