Skip to content

Commit

Permalink
btrfs: Push mnt_want_write() outside of i_mutex
Browse files Browse the repository at this point in the history
When mnt_want_write() starts to handle freezing it will get a full lock
semantics requiring proper lock ordering. So push mnt_want_write() call
consistently outside of i_mutex.

CC: Chris Mason <chris.mason@oracle.com>
CC: linux-btrfs@vger.kernel.org
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Jan Kara authored and Al Viro committed Jul 30, 2012
1 parent e24f17d commit e784868
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions fs/btrfs/ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
if (!inode_owner_or_capable(inode))
return -EACCES;

ret = mnt_want_write_file(file);
if (ret)
return ret;

mutex_lock(&inode->i_mutex);

ip_oldflags = ip->flags;
Expand All @@ -207,10 +211,6 @@ static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
}
}

ret = mnt_want_write_file(file);
if (ret)
goto out_unlock;

if (flags & FS_SYNC_FL)
ip->flags |= BTRFS_INODE_SYNC;
else
Expand Down Expand Up @@ -273,9 +273,9 @@ static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
inode->i_flags = i_oldflags;
}

mnt_drop_write_file(file);
out_unlock:
mutex_unlock(&inode->i_mutex);
mnt_drop_write_file(file);
return ret;
}

Expand Down Expand Up @@ -641,6 +641,10 @@ static noinline int btrfs_mksubvol(struct path *parent,
struct dentry *dentry;
int error;

error = mnt_want_write(parent->mnt);
if (error)
return error;

mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);

dentry = lookup_one_len(name, parent->dentry, namelen);
Expand All @@ -652,13 +656,9 @@ static noinline int btrfs_mksubvol(struct path *parent,
if (dentry->d_inode)
goto out_dput;

error = mnt_want_write(parent->mnt);
if (error)
goto out_dput;

error = btrfs_may_create(dir, dentry);
if (error)
goto out_drop_write;
goto out_dput;

down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);

Expand All @@ -676,12 +676,11 @@ static noinline int btrfs_mksubvol(struct path *parent,
fsnotify_mkdir(dir, dentry);
out_up_read:
up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
out_drop_write:
mnt_drop_write(parent->mnt);
out_dput:
dput(dentry);
out_unlock:
mutex_unlock(&dir->i_mutex);
mnt_drop_write(parent->mnt);
return error;
}

Expand Down

0 comments on commit e784868

Please sign in to comment.