summaryrefslogtreecommitdiff
path: root/btrfsck.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2012-02-06 05:05:59 -0500
committerChris Mason <chris.mason@oracle.com>2012-02-06 05:05:59 -0500
commit6a4903c8ad95a592a80a5b56ab53bd81ae9e1c56 (patch)
tree103a17a83cca8221b73fff8e6be542410c876ed6 /btrfsck.c
parente7580bb29644128d19cfe70a16df713bdcc58a43 (diff)
btrfsck: print some progress
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'btrfsck.c')
-rw-r--r--btrfsck.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/btrfsck.c b/btrfsck.c
index a56bb4bf..747bdd0e 100644
--- a/btrfsck.c
+++ b/btrfsck.c
@@ -2853,13 +2853,16 @@ int main(int ac, char **av)
root = info->fs_root;
+ fprintf(stderr, "checking extents\n");
ret = check_extents(root);
if (ret)
goto out;
+ fprintf(stderr, "checking fs roots\n");
ret = check_fs_roots(root, &root_cache);
if (ret)
goto out;
+ fprintf(stderr, "checking root refs\n");
ret = check_root_refs(root, &root_cache);
out:
free_root_recs(&root_cache);