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=e12a5e79efc2e64a49799c5fe0aa4dffb3e24a20;p=unionfs-3.17.y.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 e0d05527e213..b730934146d5 100644 --- a/fs/unionfs/commonfops.c +++ b/fs/unionfs/commonfops.c @@ -743,6 +743,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; }