[PATCH] md/bitmap: tidy up i_writecount handling in md/bitmap
md/bitmap modifies i_writecount of a bitmap file to make sure that no-one else writes to it. The reverting of the change is sometimes done twice, and there is one error path where it is omitted. This patch tidies that up. Signed-off-by: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
0cdd02cabd
commit
acc55e2201
@ -625,7 +625,6 @@ static void drain_write_queues(struct bitmap *bitmap)
|
||||
static void bitmap_file_put(struct bitmap *bitmap)
|
||||
{
|
||||
struct file *file;
|
||||
struct inode *inode;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&bitmap->lock, flags);
|
||||
@ -637,13 +636,8 @@ static void bitmap_file_put(struct bitmap *bitmap)
|
||||
|
||||
bitmap_file_unmap(bitmap);
|
||||
|
||||
if (file) {
|
||||
inode = file->f_mapping->host;
|
||||
spin_lock(&inode->i_lock);
|
||||
atomic_set(&inode->i_writecount, 1); /* allow writes again */
|
||||
spin_unlock(&inode->i_lock);
|
||||
if (file)
|
||||
fput(file);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user