btrfs-progs: fsck-tests: add test case with keyed data backref with reloc tree blocks
[btrfs-progs-unstable/devel.git] / fsck.btrfs
blobe1eff2ca4dcfadc029845ddf139c1de7360a1bf3
1 #!/bin/sh -f
3 # Copyright (c) 2013 SUSE
5 # copied from fsck.xfs
6 # Copyright (c) 2006 Silicon Graphics, Inc. All Rights Reserved.
9 # fsck.btrfs is a type of utility that should exist for any filesystem and is
10 # called during system setup when the corresponding /etc/fstab entries contain
11 # non-zero value for fs_passno. (See fstab(5) for more.)
13 # Traditional filesystems need to run their respective fsck utility in case the
14 # filesystem was not unmounted cleanly and the log needs to be replayed before
15 # mount. This is not needed for BTRFS. You should set fs_passno to 0.
17 # If you wish to check the consistency of a BTRFS filesystem or repair a
18 # damaged filesystem, see btrfs(8) subcommand 'check'. By default the
19 # filesystem consistency is checked, the repair mode is enabled via --repair
20 # option (use with care!).
22 AUTO=false
23 while getopts ":aApy" c
25 case $c in
26 a|A|p|y) AUTO=true;;
27 esac
28 done
29 shift $(($OPTIND - 1))
30 eval DEV=\${$#}
31 if [ ! -e $DEV ]; then
32 echo "$0: $DEV does not exist"
33 exit 8
35 if ! $AUTO; then
36 echo "If you wish to check the consistency of a BTRFS filesystem or"
37 echo "repair a damaged filesystem, see btrfs(8) subcommand 'check'."
39 exit 0