summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-10-25 20:39:07 +0200
committerChristoph Hellwig <hch@lst.de>2010-10-25 20:39:07 +0200
commite50fb58b5b3548e578d3b74ff15aeb7d9a496839 (patch)
treed5d94211f7d988420c854cf7d5193d57ecf277dd /fs
parent35da7a307c535f9c2929cae277f3df425c9f9b1e (diff)
downloadop-kernel-dev-e50fb58b5b3548e578d3b74ff15aeb7d9a496839.zip
op-kernel-dev-e50fb58b5b3548e578d3b74ff15aeb7d9a496839.tar.gz
hfsplus: fix double lock typo in ioctl
This was supposed to be a mutex_unlock() instead of a mutex_lock(). Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Christoph Hellwig <hch@tuxera.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/hfsplus/ioctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hfsplus/ioctl.c b/fs/hfsplus/ioctl.c
index 5b4667e..40a85a3d 100644
--- a/fs/hfsplus/ioctl.c
+++ b/fs/hfsplus/ioctl.c
@@ -92,7 +92,7 @@ static int hfsplus_ioctl_setflags(struct file *file, int __user *user_flags)
mark_inode_dirty(inode);
out_unlock_inode:
- mutex_lock(&inode->i_mutex);
+ mutex_unlock(&inode->i_mutex);
out_drop_write:
mnt_drop_write(file->f_path.mnt);
out:
OpenPOWER on IntegriCloud