]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
[PATCH] fix deadlock in ext2
authorPeter Staubach <staubach@redhat.com>
Fri, 17 Feb 2006 21:52:36 +0000 (13:52 -0800)
committerChris Wright <chrisw@sous-sol.org>
Wed, 1 Mar 2006 22:36:35 +0000 (14:36 -0800)
commit8fef8ea2a1f28a7611ad0b8ff7b48ceb38db9535
treeebf820dfff1eb8aadc354d5807d45821a48c6214
parent80a16577362b3eafa2f390d5e1ffb268464ccedb
[PATCH] fix deadlock in ext2

Fix a deadlock possible in the ext2 file system implementation.  This
deadlock occurs when a file is removed from an ext2 file system which was
mounted with the "sync" mount option.

The problem is that ext2_xattr_delete_inode() was invoking the routine,
sync_dirty_buffer(), using a buffer head which was previously locked via
lock_buffer().  The first thing that sync_dirty_buffer() does is to lock
the buffer head that it was passed.  It does this via lock_buffer().  Oops.

The solution is to unlock the buffer head in ext2_xattr_delete_inode()
before invoking sync_dirty_buffer().  This makes the code in
ext2_xattr_delete_inode() obey the same locking rules as all other callers
of sync_dirty_buffer() in the ext2 file system implementation.

Signed-off-by: Peter Staubach <staubach@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/ext2/xattr.c