Skip to content

Commit 9d090d0

Browse files
committed
Merge tag 'dm-4.6-fix-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm
Pull device mapper fix from Mike Snitzer: "Fix for earlier 4.6-rc4 stable@ commit that introduced improper use of write lock in cmd_read_lock() -- due to cut-n-paste gone awry (and sparse didn't catch it)" * tag 'dm-4.6-fix-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm: dm cache metadata: fix cmd_read_lock() acquiring write lock
2 parents b9f5dba + 6545b60 commit 9d090d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/md/dm-cache-metadata.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -894,9 +894,9 @@ static bool cmd_write_lock(struct dm_cache_metadata *cmd)
894894

895895
static bool cmd_read_lock(struct dm_cache_metadata *cmd)
896896
{
897-
down_write(&cmd->root_lock);
897+
down_read(&cmd->root_lock);
898898
if (cmd->fail_io) {
899-
up_write(&cmd->root_lock);
899+
up_read(&cmd->root_lock);
900900
return false;
901901
}
902902
return true;

0 commit comments

Comments
 (0)