mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-18 12:25:12 +00:00
87b3197d81
The option "--clear-space-cache" is not really that suitable for "btrfs check" group, as there are some concerns: - Allowing transid mismatch - No leaf item checks Thoe behaviour are inherited from the default open ctree flags for "btrfs check", which can be unsafe if the end user just wants to clear the cache. - Unclear if the cache clearing would happen along with repair Thankfully the clearing of space cache is done without any repair Thus there is a proposal to move space cache removal to rescue group, and this patch would do that exactly. However this would lead to some behavior changes: - Transid mismatch would be treated as error - Leaf items size/offset would still be checked If we hit any above error, we should just abort without doing any write. These change would increase the safety of the space cache removal, thus I believe it's worthy to introduce such behavior change. Since we're here, also add a small explanation on why we need this dedicated tool to clear space cache (especially for v1 cache). Issue: #698 Signed-off-by: Qu Wenruo <wqu@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
172 lines
5.6 KiB
ReStructuredText
172 lines
5.6 KiB
ReStructuredText
btrfs-check(8)
|
|
==============
|
|
|
|
SYNOPSIS
|
|
--------
|
|
|
|
**btrfs check** [options] <device>
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
|
|
The filesystem checker is used to verify structural integrity of a filesystem
|
|
and attempt to repair it if requested. It is recommended to unmount the
|
|
filesystem prior to running the check, but it is possible to start checking a
|
|
mounted filesystem (see :ref:`--force<man-check-option-force>`).
|
|
|
|
By default, :command:`btrfs check` will not modify the device but you can reaffirm that
|
|
by the option *--readonly*.
|
|
|
|
:command:`btrfsck` is an alias of :command:`btrfs check` command and is now deprecated.
|
|
|
|
.. warning::
|
|
Do not use *--repair* unless you are advised to do so by a developer
|
|
or an experienced user, and then only after having accepted that no *fsck*
|
|
successfully repair all types of filesystem corruption. E.g. some other software
|
|
or hardware bugs can fatally damage a volume.
|
|
|
|
The structural integrity check verifies if internal filesystem objects or
|
|
data structures satisfy the constraints, point to the right objects or are
|
|
correctly connected together.
|
|
|
|
There are several cross checks that can detect wrong reference counts of shared
|
|
extents, backreferences, missing extents of inodes, directory and inode
|
|
connectivity etc.
|
|
|
|
The amount of memory required can be high, depending on the size of the
|
|
filesystem, similarly the run time. Check the modes that can also affect that.
|
|
|
|
|
|
SAFE OR ADVISORY OPTIONS
|
|
------------------------
|
|
|
|
-b|--backup
|
|
use the first valid set of backup roots stored in the superblock
|
|
|
|
This can be combined with *--super* if some of the superblocks are damaged.
|
|
|
|
--check-data-csum
|
|
verify checksums of data blocks
|
|
|
|
This expects that the filesystem is otherwise OK, and is basically an offline
|
|
*scrub* that does not repair data from spare copies.
|
|
|
|
--chunk-root <bytenr>
|
|
use the given offset *bytenr* for the chunk tree root
|
|
|
|
-E|--subvol-extents <subvolid>
|
|
show extent state for the given subvolume
|
|
|
|
-p|--progress
|
|
indicate progress at various checking phases
|
|
|
|
-Q|--qgroup-report
|
|
verify qgroup accounting and compare against filesystem accounting
|
|
|
|
-r|--tree-root <bytenr>
|
|
use the given offset 'bytenr' for the tree root
|
|
|
|
--readonly
|
|
(default)
|
|
run in read-only mode, this option exists to calm potential panic when users
|
|
are going to run the checker
|
|
|
|
-s|--super <N>
|
|
use Nth superblock copy, valid values are 0, 1 or 2 if the
|
|
respective superblock offset is within the device size
|
|
|
|
This can be used to use a different starting point if some of the primary
|
|
superblock is damaged.
|
|
|
|
--clear-space-cache v1|v2
|
|
completely remove the free space cache of the given version
|
|
|
|
See also the *clear_cache* mount option.
|
|
|
|
.. warning::
|
|
This option is deprecated, please use `btrfs rescue clear-space-cache`
|
|
instead, this option would be removed in the future eventually.
|
|
|
|
--clear-ino-cache
|
|
remove leftover items pertaining to the deprecated `inode cache` feature
|
|
|
|
.. warning::
|
|
This option is deprecated, please use `btrfs rescue clear-ino-cache`
|
|
instead, this option would be removed in the future eventually.
|
|
|
|
DANGEROUS OPTIONS
|
|
-----------------
|
|
|
|
--repair
|
|
enable the repair mode and attempt to fix problems where possible
|
|
|
|
.. note::
|
|
There's a warning and 10 second delay when this option is run without
|
|
*--force* to give users a chance to think twice before running repair, the
|
|
warnings in documentation have shown to be insufficient.
|
|
|
|
--init-csum-tree
|
|
create a new checksum tree and recalculate checksums in all files
|
|
|
|
.. warning::
|
|
Do not blindly use this option to fix checksum mismatch problems.
|
|
|
|
--init-extent-tree
|
|
build the extent tree from scratch
|
|
|
|
.. warning::
|
|
Do not use unless you know what you're doing.
|
|
|
|
--mode <MODE>
|
|
select mode of operation regarding memory and IO
|
|
|
|
The *MODE* can be one of:
|
|
|
|
original
|
|
The metadata are read into memory and verified, thus the requirements are high
|
|
on large filesystems and can even lead to out-of-memory conditions. The
|
|
possible workaround is to export the block device over network to a machine
|
|
with enough memory.
|
|
lowmem
|
|
This mode is supposed to address the high memory consumption at the cost of
|
|
increased IO when it needs to re-read blocks. This may increase run time.
|
|
|
|
.. note::
|
|
*lowmem* mode does not work with *--repair* yet, and is still considered
|
|
experimental.
|
|
|
|
.. _man-check-option-force:
|
|
|
|
--force
|
|
allow work on a mounted filesystem and skip mount checks. Note that
|
|
this should work fine on a quiescent or read-only mounted filesystem
|
|
but may crash if the device is changed externally, e.g. by the kernel
|
|
module.
|
|
|
|
.. note::
|
|
It is possible to run with --repair but on a mounted filesystem
|
|
that will most likely lead to a corruption unless the filesystem
|
|
is in a quiescent state which may not be possible to guarantee.
|
|
|
|
This option also skips the delay and warning in the repair mode (see
|
|
*--repair*).
|
|
|
|
EXIT STATUS
|
|
-----------
|
|
|
|
**btrfs check** returns a zero exit status if it succeeds. Non zero is
|
|
returned in case of failure.
|
|
|
|
AVAILABILITY
|
|
------------
|
|
|
|
**btrfs** is part of btrfs-progs. Please refer to the documentation at
|
|
`https://btrfs.readthedocs.io <https://btrfs.readthedocs.io>`_.
|
|
|
|
SEE ALSO
|
|
--------
|
|
|
|
:doc:`mkfs.btrfs`,
|
|
:doc:`btrfs-scrub`,
|
|
:doc:`btrfs-rescue`
|