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

Commit 481b01c0 authored by Nikolay Borisov's avatar Nikolay Borisov Committed by David Sterba
Browse files

btrfs: Make logged_inode_size take btrfs_inode

parent a491abb2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -4241,13 +4241,13 @@ static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
	return ret;
}

static int logged_inode_size(struct btrfs_root *log, struct inode *inode,
static int logged_inode_size(struct btrfs_root *log, struct btrfs_inode *inode,
			     struct btrfs_path *path, u64 *size_ret)
{
	struct btrfs_key key;
	int ret;

	key.objectid = btrfs_ino(BTRFS_I(inode));
	key.objectid = btrfs_ino(inode);
	key.type = BTRFS_INODE_ITEM_KEY;
	key.offset = 0;

@@ -4699,7 +4699,7 @@ static int btrfs_log_inode(struct btrfs_trans_handle *trans,
			 * (zeroes), as if an expanding truncate happened,
			 * instead of getting a file of 4Kb only.
			 */
			err = logged_inode_size(log, inode, path,
			err = logged_inode_size(log, BTRFS_I(inode), path,
						&logged_isize);
			if (err)
				goto out_unlock;