Skip to content

Commit 2e7be9d

Browse files
davispuhkdave
authored andcommitted
btrfs: send: in case of IO error log it
Currently if we get IO error while doing send then we abort without logging information about which file caused issue. So log it to help with debugging. CC: [email protected] # 4.9+ Signed-off-by: Dāvis Mosāns <[email protected]> Reviewed-by: David Sterba <[email protected]> Signed-off-by: David Sterba <[email protected]>
1 parent a0f0cf8 commit 2e7be9d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

fs/btrfs/send.c

+4
Original file line numberDiff line numberDiff line change
@@ -4999,6 +4999,10 @@ static int put_file_data(struct send_ctx *sctx, u64 offset, u32 len)
49994999
lock_page(page);
50005000
if (!PageUptodate(page)) {
50015001
unlock_page(page);
5002+
btrfs_err(fs_info,
5003+
"send: IO error at offset %llu for inode %llu root %llu",
5004+
page_offset(page), sctx->cur_ino,
5005+
sctx->send_root->root_key.objectid);
50025006
put_page(page);
50035007
ret = -EIO;
50045008
break;

0 commit comments

Comments
 (0)