btrfs-progs: docs: update note about device deletion
[platform/upstream/btrfs-progs.git] / Documentation / btrfs-rescue.asciidoc
1 btrfs-rescue(8)
2 ==============
3
4 NAME
5 ----
6 btrfs-rescue - Recover a damaged btrfs filesystem
7
8 SYNOPSIS
9 --------
10 *btrfs rescue* <subcommand> <args>
11
12 DESCRIPTION
13 -----------
14 *btrfs rescue* is used to try to recover a damaged btrfs filesystem.
15
16 SUBCOMMAND
17 ----------
18 *chunk-recover* [options] <device>::
19 Recover the chunk tree by scanning the devices
20 +
21 `Options`
22 +
23 -y::::
24 assume an answer of 'yes' to all questions.
25 -v::::
26 verbose mode.
27 -h::::
28 help.
29
30 NOTE: Since *chunk-recover* will scan the whole device, it will be *VERY* slow
31 especially executed on a large device.
32
33 *super-recover* [options] <device>::
34 Recover bad superblocks from good copies.
35 +
36 `Options`
37 +
38 -y::::
39 assume an answer of 'yes' to all questions.
40 -v::::
41 verbose mode.
42
43 *zero-log* <device>::
44 clear the filesystem log tree
45 +
46 This command will clear the filesystem log tree. This may fix a specific
47 set of problem when the filesystem mount fails due to the log replay. See below
48 for sample stacktraces that may show up in system log.
49 +
50 The common case where this happens has been fixed a long time ago,
51 so it is unlikely that you will see this particular problem, but the utility is
52 kept around.
53 +
54 NOTE: clearing the log may lead to loss of changes that were made since the
55 last transaction commit. This may be up to 30 seconds (default commit period)
56 or less if the commit was implied by other filesystem activity.
57 +
58 One can determine whether *zero-log* is needed according to the kernel
59 backtrace:
60 ----
61 ? replay_one_dir_item+0xb5/0xb5 [btrfs]
62 ? walk_log_tree+0x9c/0x19d [btrfs]
63 ? btrfs_read_fs_root_no_radix+0x169/0x1a1 [btrfs]
64 ? btrfs_recover_log_trees+0x195/0x29c [btrfs]
65 ? replay_one_dir_item+0xb5/0xb5 [btrfs]
66 ? btree_read_extent_buffer_pages+0x76/0xbc [btrfs]
67 ? open_ctree+0xff6/0x132c [btrfs]
68 ----
69 +
70 If the errors are like above, then *zero-log* should be used to clear
71 the log and the filesystem may be mounted normally again. The keywords to look
72 for are 'open_ctree' which says that it's during mount and function names
73 that contain 'replay', 'recover' or 'log_tree'.
74
75 EXIT STATUS
76 -----------
77 *btrfs rescue* returns a zero exit status if it succeeds. Non zero is
78 returned in case of failure.
79
80 AVAILABILITY
81 ------------
82 *btrfs* is part of btrfs-progs.
83 Please refer to the btrfs wiki http://btrfs.wiki.kernel.org for
84 further details.
85
86 SEE ALSO
87 --------
88 `mkfs.btrfs`(8),
89 `btrfs-scrub`(8),
90 `btrfs-check`(8)