From: Filipe Manana <fdman...@gmail.com> When specifying -vv print information about received write and clone commands too, as we do this for other commands already and it's very useful for debugging and troubleshooting.
Signed-off-by: Filipe David Borba Manana <fdman...@gmail.com> --- cmds-receive.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cmds-receive.c b/cmds-receive.c index 510b6bc8..20e593f7 100644 --- a/cmds-receive.c +++ b/cmds-receive.c @@ -790,6 +790,10 @@ static int process_write(const char *path, const void *data, u64 offset, u64 pos = 0; int w; + if (g_verbose >= 2) + fprintf(stderr, "write %s, offset %llu, len %llu\n", + path, offset, len); + ret = path_cat_out(full_path, rctx->full_subvol_path, path); if (ret < 0) { error("write: path invalid: %s", path); @@ -831,6 +835,11 @@ static int process_clone(const char *path, u64 offset, u64 len, char full_clone_path[PATH_MAX]; int clone_fd = -1; + if (g_verbose >= 2) + fprintf(stderr, + "clone %s, offset %llu, len %llu, clone path %s, clone offset %llu\n", + path, offset, len, clone_path, clone_offset); + ret = path_cat_out(full_path, rctx->full_subvol_path, path); if (ret < 0) { error("clone: source path invalid: %s", path); -- 2.17.0 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html