[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20090508062819.GB1689@infradead.org>
Date: Fri, 8 May 2009 02:28:19 -0400
From: Christoph Hellwig <hch@...radead.org>
To: Felix Blyakher <felixb@....com>
Cc: xfs@....sgi.com, kernel-testers@...r.kernel.org,
linux-kernel@...r.kernel.org, a.beregalov@...il.com
Subject: Re: [PATCH] xfs: fix double unlock in xfs_swap_extents()
The patch looks good, but a little nitpick:
On Thu, May 07, 2009 at 08:13:22PM -0500, Felix Blyakher wrote:
> out:
> kmem_free(tempifp);
> return error;
>
> +out_unlock:
> + xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
> + xfs_iunlock(tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
> + goto out;
> +
> out_trans_cancel:
> xfs_trans_cancel(tp, 0);
> goto out_unlock;
this would be more readable as:
out_trans_cancel:
xfs_trans_cancel(tp, 0);
out_unlock:
xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
xfs_iunlock(tip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
goto out;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists