]> git.karo-electronics.de Git - karo-tx-linux.git/commit
dm: dont take i_mutex to change device size
authorMike Snitzer <snitzer@redhat.com>
Thu, 13 Jan 2011 19:53:46 +0000 (19:53 +0000)
committerAK <andi@firstfloor.org>
Thu, 31 Mar 2011 18:57:55 +0000 (11:57 -0700)
commit909e776f2916d9197efd789d52c9f34c41415453
treeb80317074cdd353c060289a9f226a2154089bc87
parent7aa043b04c3584f52c9c3e120fca1521d8836499
dm: dont take i_mutex to change device size

commit c217649bf2d60ac119afd71d938278cffd55962b upstream.

No longer needlessly hold md->bdev->bd_inode->i_mutex when changing the
size of a DM device.  This additional locking is unnecessary because
i_size_write() is already protected by the existing critical section in
dm_swap_table().  DM already has a reference on md->bdev so the
associated bd_inode may be changed without lifetime concerns.

A negative side-effect of having held md->bdev->bd_inode->i_mutex was
that a concurrent DM device resize and flush (via fsync) would deadlock.
Dropping md->bdev->bd_inode->i_mutex eliminates this potential for
deadlock.  The following reproducer no longer deadlocks:
  https://www.redhat.com/archives/dm-devel/2009-July/msg00284.html

Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
drivers/md/dm.c