]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
Btrfs: delay iput with async extents
authorJosef Bacik <josef@redhat.com>
Fri, 15 Jun 2012 18:19:48 +0000 (12:19 -0600)
committerChris Mason <chris.mason@fusionio.com>
Thu, 21 Jun 2012 11:19:36 +0000 (07:19 -0400)
There is some concern that these iput()'s could be the final iputs and could
induce lockups on people waiting on writeback.  This would happen in the
rare case that we don't create ordered extents because of an error, but it
is theoretically possible and we already have a mechanism to deal with this
so just make them delayed iputs to negate any worry.

Signed-off-by: Josef Bacik <josef@redhat.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
fs/btrfs/inode.c

index 3f2c8cbe5ba62248aa7eacab5514332f82774ae8..4a4f2d59a64bd770a95ecde054ea913f7692580d 100644 (file)
@@ -987,7 +987,7 @@ static noinline void async_cow_start(struct btrfs_work *work)
                            async_cow->start, async_cow->end, async_cow,
                            &num_added);
        if (num_added == 0) {
-               iput(async_cow->inode);
+               btrfs_add_delayed_iput(async_cow->inode);
                async_cow->inode = NULL;
        }
 }
@@ -1023,7 +1023,7 @@ static noinline void async_cow_free(struct btrfs_work *work)
        struct async_cow *async_cow;
        async_cow = container_of(work, struct async_cow, work);
        if (async_cow->inode)
-               iput(async_cow->inode);
+               btrfs_add_delayed_iput(async_cow->inode);
        kfree(async_cow);
 }