From: Kou Ishizaki Date: Wed, 8 Oct 2008 23:45:49 +0000 (+1100) Subject: powerpc/spufs: add a missing mutex_unlock X-Git-Tag: v2.6.27.8~45 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=baec2700bad81e1b08c81240c382b46613ccb981;p=karo-tx-linux.git powerpc/spufs: add a missing mutex_unlock commit 6747c2ee8abf749e63fee8cd01a9ee293e6a4247 upstream. A mutex_unlock(&gang->aff_mutex) in spufs_create_context() is missing in case spufs_context_open() fails. As a result, spu_create syscall and spu_get_idle() may block. This patch adds the mutex_unlock. Signed-off-by: Kou Ishizaki Signed-off-by: Jeremy Kerr Acked-by: Andre Detsch Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/powerpc/platforms/cell/spufs/inode.c b/arch/powerpc/platforms/cell/spufs/inode.c index 690ca7b0dcf6..5c73b62cc6b4 100644 --- a/arch/powerpc/platforms/cell/spufs/inode.c +++ b/arch/powerpc/platforms/cell/spufs/inode.c @@ -496,6 +496,8 @@ spufs_create_context(struct inode *inode, struct dentry *dentry, ret = spufs_context_open(dget(dentry), mntget(mnt)); if (ret < 0) { WARN_ON(spufs_rmdir(inode, dentry)); + if (affinity) + mutex_unlock(&gang->aff_mutex); mutex_unlock(&inode->i_mutex); spu_forget(SPUFS_I(dentry->d_inode)->i_ctx); goto out;