projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a4f0162
)
Btrfs: put the right bio if we have an error
author
Josef Bacik
<josef@redhat.com>
Mon, 25 Apr 2011 23:43:52 +0000
(19:43 -0400)
committer
Chris Mason
<chris.mason@oracle.com>
Mon, 25 Apr 2011 23:43:52 +0000
(19:43 -0400)
In btrfs_submit_direct_hook if the first btrfs_map_block fails we need to put
the orig_bio, not bio.
Signed-off-by: Josef Bacik <josef@redhat.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/inode.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/btrfs/inode.c
b/fs/btrfs/inode.c
index c718d274a352d573b0940ba606d6003c9151e7cb..ad6b515173accc505f5c2106eb1cd56979314ca1 100644
(file)
--- a/
fs/btrfs/inode.c
+++ b/
fs/btrfs/inode.c
@@
-6041,7
+6041,7
@@
static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
ret = btrfs_map_block(map_tree, READ, start_sector << 9,
&map_length, NULL, 0);
if (ret) {
- bio_put(bio);
+ bio_put(
orig_
bio);
return -EIO;
}