Previously if restore could not read users specified fs root, it would
output following message:

 Error reading root

With this patch, it will output message like:

 Fail to read root 1000: No such file or directory

Signed-off-byr Wang Shilong <wangsl.f...@cn.fujitsu.com>
---
 cmds-restore.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cmds-restore.c b/cmds-restore.c
index 48c46ff..8267ab6 100644
--- a/cmds-restore.c
+++ b/cmds-restore.c
@@ -1257,7 +1257,8 @@ int cmd_restore(int argc, char **argv)
                key.offset = (u64)-1;
                root = btrfs_read_fs_root(orig_root->fs_info, &key);
                if (IS_ERR(root)) {
-                       fprintf(stderr, "Error reading root\n");
+                       fprintf(stderr, "fail to read root %llu: %s\n",
+                                       root_objectid, 
strerror(-PTR_ERR(root)));
                        root = orig_root;
                        ret = 1;
                        goto out;
-- 
1.9.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

Reply via email to