diff options
| author | Josef Bacik <jbacik@fusionio.com> | 2013-09-17 11:25:44 -0400 |
|---|---|---|
| committer | Chris Mason <chris.mason@fusionio.com> | 2013-09-21 11:05:28 -0400 |
| commit | f4ab9ea706f2c6e4aad544145353b81afe7500e1 (patch) | |
| tree | 7fa34b634e182d7c27da878922a4f0de7eb5fcfe | |
| parent | Btrfs: remove space_info->reservation_progress (diff) | |
| download | linux-f4ab9ea706f2c6e4aad544145353b81afe7500e1.tar.gz linux-f4ab9ea706f2c6e4aad544145353b81afe7500e1.zip | |
Btrfs: iput inode on allocation failure
We don't do the iput when we fail to allocate our delayed delalloc work in
__start_delalloc_inodes, fix this.
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
| -rw-r--r-- | fs/btrfs/inode.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index abed81d93687..931036c6eb90 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -8216,6 +8216,10 @@ static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput) work = btrfs_alloc_delalloc_work(inode, 0, delay_iput); if (unlikely(!work)) { + if (delay_iput) + btrfs_add_delayed_iput(inode); + else + iput(inode); ret = -ENOMEM; goto out; } |
