projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e707bc
)
btrfs: btrfs_bio_alloc never fails, skip error handling
author
David Sterba
<dsterba@suse.com>
Fri, 2 Jun 2017 15:38:30 +0000
(17:38 +0200)
committer
David Sterba
<dsterba@suse.com>
Mon, 19 Jun 2017 16:26:02 +0000
(18:26 +0200)
Update direct callers of btrfs_bio_alloc 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>
fs/btrfs/extent_io.c
patch
|
blob
|
history
diff --git
a/fs/btrfs/extent_io.c
b/fs/btrfs/extent_io.c
index
9ff3e78
..
e15bd02
100644
(file)
--- a/
fs/btrfs/extent_io.c
+++ b/
fs/btrfs/extent_io.c
@@
-2808,9
+2808,6
@@
static int submit_extent_page(int op, int op_flags, struct extent_io_tree *tree,
bio = btrfs_bio_alloc(bdev, sector, BIO_MAX_PAGES,
GFP_NOFS | __GFP_HIGH);
- if (!bio)
- return -ENOMEM;
-
bio_add_page(bio, page, page_size, offset);
bio->bi_end_io = end_io_func;
bio->bi_private = tree;