aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/inode.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2017-06-02 17:38:30 +0200
committerDavid Sterba <dsterba@suse.com>2017-06-19 18:26:02 +0200
commit3aa8e074ab2ec507b7380dd5d460fea83d92b66b (patch)
tree76a454c2c41ca3af6dd286e823a6437e1ebf36a1 /fs/btrfs/inode.c
parentbtrfs: btrfs_bio_alloc never fails, skip error handling (diff)
downloadlinux-dev-3aa8e074ab2ec507b7380dd5d460fea83d92b66b.tar.xz
linux-dev-3aa8e074ab2ec507b7380dd5d460fea83d92b66b.zip
btrfs: btrfs_bio_clone never fails, skip error handling
Update direct callers of btrfs_bio_clone that do error handling, that we can now remove. Reviewed-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r--fs/btrfs/inode.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 4e33c3fded5c..1fde50a430a9 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -8584,10 +8584,6 @@ static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode,
skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
- if (!bio) {
- ret = -ENOMEM;
- goto free_ordered;
- }
dip = kzalloc(sizeof(*dip), GFP_NOFS);
if (!dip) {