Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f74670f7 authored by Anand Jain's avatar Anand Jain Committed by David Sterba
Browse files

btrfs: use BTRFS_COMPRESS_NONE to specify no compression

parent 1aceabf3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -541,7 +541,7 @@ static noinline void compress_file_range(struct inode *inode,
			 * to make an uncompressed inline extent.
			 */
			ret = cow_file_range_inline(root, inode, start, end,
						    0, 0, NULL);
					    0, BTRFS_COMPRESS_NONE, NULL);
		} else {
			/* try making a compressed inline extent */
			ret = cow_file_range_inline(root, inode, start, end,
@@ -972,8 +972,8 @@ static noinline int cow_file_range(struct inode *inode,

	if (start == 0) {
		/* lets try to make an inline extent */
		ret = cow_file_range_inline(root, inode, start, end, 0, 0,
					    NULL);
		ret = cow_file_range_inline(root, inode, start, end, 0,
					BTRFS_COMPRESS_NONE, NULL);
		if (ret == 0) {
			extent_clear_unlock_delalloc(inode, start, end,
				     delalloc_end, NULL,