From: Erez_Zadok Date: Thu, 31 May 2007 00:09:07 +0000 (-0400) Subject: bugfix: release superblock lock at end of ioctl method X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=87f824c68b28dcf8ea8ba37e7beb8db8ac4558f6;p=unionfs-odf.git bugfix: release superblock lock at end of ioctl method Signed-off-by: Josef 'Jeff' Sipek Signed-off-by: Erez Zadok --- diff --git a/fs/unionfs/commonfops.c b/fs/unionfs/commonfops.c index 52b01438ad..db77412ddf 100644 --- a/fs/unionfs/commonfops.c +++ b/fs/unionfs/commonfops.c @@ -814,6 +814,7 @@ long unionfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg) } out: + unionfs_read_unlock(file->f_dentry->d_sb); unionfs_check_file(file); return err; }