blob: cce054f81d7c946c480d460e50dfb57618681b13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2014 SUSE Linux Products GmbH. All Rights Reserved.
#
# FS QA Test No. btrfs/077
#
# Regression test for a btrfs incremental send issue.
# If between two snapshots we rename an existing directory named X to Y and
# make it a child (direct or not) of a new inode named X, we were delaying
# the move/rename of the former directory unnecessarily, which would result
# in attempting to rename the new directory from its orphan name to name X
# prematurely. This made btrfs receive fail with an error message like the
# following:
#
# rename o261-7-0 -> merlin/RC/OSD failed
#
# This issue was a regression in the 3.16 kernel and got fixed by the following
# linux kernel btrfs patch:
#
# Btrfs: send, don't delay dir move if there's a new parent inode
#
. ./common/preamble
_begin_fstest auto quick send snapshot
tmp=`mktemp -d`
# Override the default cleanup function.
_cleanup()
{
rm -fr $send_files_dir
rm -fr $tmp
}
. ./common/filter
_supported_fs btrfs
_require_scratch
_require_fssum
send_files_dir=$TEST_DIR/btrfs-test-$seq
rm -fr $send_files_dir
mkdir $send_files_dir
_scratch_mkfs >>$seqres.full 2>&1
_scratch_mount
mkdir -p $SCRATCH_MNT/merlin/RC/OSD/Source
mkdir -p $SCRATCH_MNT/fdm/RCz/OSDz/Sourcez
mkdir -p $SCRATCH_MNT/Z/Z2
# Filesystem looks like:
#
# . (ino 256)
# |---- merlin/ (ino 257)
# | |---- RC/ (ino 258)
# | |----- OSD/ (ino 259)
# | |---- Source/ (ino 260)
# |
# |---- fdm/ (ino 261)
# | |---- RCz/ (ino 262)
# | |----- OSDz/ (ino 263)
# | |---- Sourcez/ (ino 264)
# |
# |---- Z/ (ino 265)
# |---- Z2/ (ino 266)
#
_btrfs subvolume snapshot -r $SCRATCH_MNT $SCRATCH_MNT/mysnap1
mkdir $SCRATCH_MNT/OSD
mv $SCRATCH_MNT/merlin/RC/OSD $SCRATCH_MNT/OSD/OSD-Plane_788
mv $SCRATCH_MNT/OSD $SCRATCH_MNT/merlin/RC
mkdir $SCRATCH_MNT/OSDz
mv $SCRATCH_MNT/Z/Z2 $SCRATCH_MNT/OSDz/xz2
mv $SCRATCH_MNT/Z $SCRATCH_MNT/OSDz/xz2/xz
mv $SCRATCH_MNT/fdm/RCz/OSDz $SCRATCH_MNT/OSDz/xz2/xz/OSD-Plane_788z
mv $SCRATCH_MNT/OSDz $SCRATCH_MNT/fdm/RCz
# Filesystem now looks like:
#
#
# . (ino 256)
# |---- merlin/ (ino 257)
# | |---- RC/ (ino 258)
# | |----- OSD/ (ino 267) (new)
# | |---- OSD-Plane_788/ (ino 259)
# | |---- Source/ (ino 260)
# |
# |---- fdm/ (ino 261)
# |---- RCz/ (ino 262)
# |----- OSDz/ (ino 268) (new)
# |--- xz2/ (ino 266)
# |---- xz/ (ino 265)
# |---- OSD-Plane_788z/ (ino 263)
# |---- Sourcez/ (ino 264)
#
_btrfs subvolume snapshot -r $SCRATCH_MNT $SCRATCH_MNT/mysnap2
run_check $FSSUM_PROG -A -f -w $send_files_dir/1.fssum $SCRATCH_MNT/mysnap1
run_check $FSSUM_PROG -A -f -w $send_files_dir/2.fssum \
-x $SCRATCH_MNT/mysnap2/mysnap1 $SCRATCH_MNT/mysnap2
_btrfs send -f $send_files_dir/1.snap $SCRATCH_MNT/mysnap1
_btrfs send -p $SCRATCH_MNT/mysnap1 -f $send_files_dir/2.snap \
$SCRATCH_MNT/mysnap2
_check_scratch_fs
_scratch_unmount
_scratch_mkfs >>$seqres.full 2>&1
_scratch_mount
_btrfs receive -f $send_files_dir/1.snap $SCRATCH_MNT
run_check $FSSUM_PROG -r $send_files_dir/1.fssum $SCRATCH_MNT/mysnap1
_btrfs receive -f $send_files_dir/2.snap $SCRATCH_MNT
run_check $FSSUM_PROG -r $send_files_dir/2.fssum $SCRATCH_MNT/mysnap2
echo "Silence is golden"
status=0
exit
|