c3a893d519
- place binaries in /usr tree (UsrMerge project) - adjust mkinitrd script accordingly - add btrfsck repair options for: - rebuild extent records - fix block group accounting - reset csums for rescue nodatasum mount - prune corrupt extent allocation tree blocks - device scanning fixes for dm and multipath - initrd support: move btrfs device scan after block device setup - documentation updates - add csize for file commpressed size - updated restore utility OBS-URL: https://build.opensuse.org/request/show/108879 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/btrfsprogs?expand=0&rev=26
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
|
|
|