lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 23 Aug 2006 11:09:35 -0400 (EDT)
From:	Jason Baron <jbaron@...hat.com>
To:	neilb@...e.de
cc:	akpm@...l.org, arjan@...radead.org, mingo@...hat.com,
	axboe@...e.de, a.p.zijlstra@...llo.nl, linux-kernel@...r.kernel.org
Subject: [PATCH] block_dev.c mutex_lock_nested() fix


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.

thanks,

-Jason

Signed-off-by: Jason Baron <jbaron@...hat.com>

--- 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@...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

Powered by Openwall GNU/*/Linux Powered by OpenVZ