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

Commit 99e22f78 authored by Valentina Giusti's avatar Valentina Giusti Committed by Chris Mason
Browse files

btrfs: remove unused variable from btrfs_new_inode



Variable owner in btrfs_new_inode is unused since commit
d82a6f1d
(Btrfs: kill BTRFS_I(inode)->block_group)

Signed-off-by: default avatarValentina Giusti <valentina.giusti@microon.de>
Signed-off-by: default avatarJosef Bacik <jbacik@fusionio.com>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent f8ba9c11
Loading
Loading
Loading
Loading
+0 −6
Original line number Original line Diff line number Diff line
@@ -5372,7 +5372,6 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
	u32 sizes[2];
	u32 sizes[2];
	unsigned long ptr;
	unsigned long ptr;
	int ret;
	int ret;
	int owner;


	path = btrfs_alloc_path();
	path = btrfs_alloc_path();
	if (!path)
	if (!path)
@@ -5418,11 +5417,6 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
	 */
	 */
	set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
	set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);


	if (S_ISDIR(mode))
		owner = 0;
	else
		owner = 1;

	key[0].objectid = objectid;
	key[0].objectid = objectid;
	btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
	btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
	key[0].offset = 0;
	key[0].offset = 0;