Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
e7344086
Commit
e7344086
authored
May 25, 2016
by
David Sterba
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'misc-4.7' into for-chris-4.7-20160525
parents
c315ef8d
f1fee653
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
fs/btrfs/extent_io.c
fs/btrfs/extent_io.c
+5
-1
fs/btrfs/scrub.c
fs/btrfs/scrub.c
+2
-1
fs/btrfs/volumes.c
fs/btrfs/volumes.c
+2
-2
No files found.
fs/btrfs/extent_io.c
View file @
e7344086
...
...
@@ -4389,8 +4389,12 @@ int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
if
(
ret
<
0
)
{
btrfs_free_path
(
path
);
return
ret
;
}
else
{
WARN_ON
(
!
ret
);
if
(
ret
==
1
)
ret
=
0
;
}
WARN_ON
(
!
ret
);
path
->
slots
[
0
]
--
;
btrfs_item_key_to_cpu
(
path
->
nodes
[
0
],
&
found_key
,
path
->
slots
[
0
]);
found_type
=
found_key
.
type
;
...
...
fs/btrfs/scrub.c
View file @
e7344086
...
...
@@ -2181,7 +2181,7 @@ static void scrub_missing_raid56_pages(struct scrub_block *sblock)
struct
btrfs_fs_info
*
fs_info
=
sctx
->
dev_root
->
fs_info
;
u64
length
=
sblock
->
page_count
*
PAGE_SIZE
;
u64
logical
=
sblock
->
pagev
[
0
]
->
logical
;
struct
btrfs_bio
*
bbio
;
struct
btrfs_bio
*
bbio
=
NULL
;
struct
bio
*
bio
;
struct
btrfs_raid_bio
*
rbio
;
int
ret
;
...
...
@@ -2982,6 +2982,7 @@ static noinline_for_stack int scrub_raid56_parity(struct scrub_ctx *sctx,
extent_len
);
mapped_length
=
extent_len
;
bbio
=
NULL
;
ret
=
btrfs_map_block
(
fs_info
,
READ
,
extent_logical
,
&
mapped_length
,
&
bbio
,
0
);
if
(
!
ret
)
{
...
...
fs/btrfs/volumes.c
View file @
e7344086
...
...
@@ -6630,13 +6630,13 @@ int btrfs_read_sys_array(struct btrfs_root *root)
sb_array_offset
+=
len
;
cur_offset
+=
len
;
}
free_extent_buffer
(
sb
);
free_extent_buffer
_stale
(
sb
);
return
ret
;
out_short_read:
printk
(
KERN_ERR
"BTRFS: sys_array too short to read %u bytes at offset %u
\n
"
,
len
,
cur_offset
);
free_extent_buffer
(
sb
);
free_extent_buffer
_stale
(
sb
);
return
-
EIO
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment