35 lines
862 B
Diff
35 lines
862 B
Diff
|
From bed79b9cd39caf88f5bf8fe9340afa539924a8cc Mon Sep 17 00:00:00 2001
|
||
|
From: Chris Mason <chris.mason@oracle.com>
|
||
|
Date: Mon, 6 Feb 2012 05:05:59 -0500
|
||
|
Subject: [PATCH 02/18] btrfsck: print some progress Signed-off-by: Chris
|
||
|
Mason <chris.mason@oracle.com>
|
||
|
|
||
|
---
|
||
|
btrfsck.c | 3 +++
|
||
|
1 files changed, 3 insertions(+), 0 deletions(-)
|
||
|
|
||
|
diff --git a/btrfsck.c b/btrfsck.c
|
||
|
index 40eb407..a3c6286 100644
|
||
|
--- a/btrfsck.c
|
||
|
+++ b/btrfsck.c
|
||
|
@@ -2854,13 +2854,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);
|
||
|
--
|
||
|
1.7.6.233.gd79bc
|
||
|
|