Re: [PATCH] block_dev.c mutex_lock_nested() fix

From: Peter Zijlstra
Date: Wed Aug 23 2006 - 12:50:24 EST


On Wed, 2006-08-23 at 11:09 -0400, Jason Baron wrote:
> Hi,
>
> In the case below we are locking the whole disk not a partition. This
> change simply brings the code in line with the piece above where when we
> are the 'first' opener, and we are a partition.

Makes sense in that only whole devices have a partition count.

> Signed-off-by: Jason Baron <jbaron@xxxxxxxxxx>
Acked-by: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>

> --- linux-2.6/fs/block_dev.c.bak
> +++ linux-2.6/fs/block_dev.c
> @@ -966,7 +966,7 @@ do_open(struct block_device *bdev, struc
> rescan_partitions(bdev->bd_disk, bdev);
> } else {
> mutex_lock_nested(&bdev->bd_contains->bd_mutex,
> - BD_MUTEX_PARTITION);
> + BD_MUTEX_WHOLE);
> bdev->bd_contains->bd_part_count++;
> mutex_unlock(&bdev->bd_contains->bd_mutex);
> }

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/