projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c854a99
)
Btrfs: pass NULL instead of 0
author
Liu Bo
<bo.li.liu@oracle.com>
Thu, 28 Mar 2013 08:30:28 +0000
(08:30 +0000)
committer
Josef Bacik
<jbacik@fusionio.com>
Mon, 6 May 2013 19:54:27 +0000
(15:54 -0400)
set_extent_bit()'s (u64 *failed_start) expects NULL not 0.
Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
fs/btrfs/extent_io.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/btrfs/extent_io.c
b/fs/btrfs/extent_io.c
index cdee391fc7bfd57c596204a8474142e7afe60335..1e4627c33548c8b45335c9718e5c7acc14effbc6 100644
(file)
--- a/
fs/btrfs/extent_io.c
+++ b/
fs/btrfs/extent_io.c
@@
-1189,7
+1189,7
@@
int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
struct extent_state **cached_state, gfp_t mask)
{
- return set_extent_bit(tree, start, end, EXTENT_UPTODATE,
0
,
+ return set_extent_bit(tree, start, end, EXTENT_UPTODATE,
NULL
,
cached_state, mask);
}