It's nice to ignore errors on restore, but spit out the filename so the user knows which files of his aren't going to look right. Thanks,
Signed-off-by: Josef Bacik <[email protected]> --- cmds-restore.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmds-restore.c b/cmds-restore.c index 38a131e..b52d5c8 100644 --- a/cmds-restore.c +++ b/cmds-restore.c @@ -840,6 +840,8 @@ static int search_dir(struct btrfs_root *root, struct btrfs_key *key, ret = copy_file(root, fd, &location, path_name); close(fd); if (ret) { + fprintf(stderr, "Error copying data for %s\n", + path_name); if (ignore_errors) goto next; btrfs_free_path(path); @@ -917,6 +919,8 @@ static int search_dir(struct btrfs_root *root, struct btrfs_key *key, output_rootdir, dir, mreg); free(dir); if (ret) { + fprintf(stderr, "Error searching %s\n", + path_name); if (ignore_errors) goto next; btrfs_free_path(path); -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
