Skip to content

Commit aa49b7c

Browse files
boryaskdave
authored andcommittedJun 9, 2023
btrfs-progs: docs: discourage seeding remount workflow
The remount workflow could cause some problems so make a note about it. Recommend the umount/mount step by default. A seeding device used for e.g. a root filesystem that gets updated and has snapshots is a real world example where the space consumed by unreclaimed deleted snapshots would hurt. Pull-request: #462 Author: Boris Burkov <boris@bur.io> Signed-off-by: David Sterba <dsterba@suse.com>
1 parent 1e18750 commit aa49b7c

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed
 

‎Documentation/ch-seeding-device.rst

+19-6
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,18 @@ same time. The UUID that is normally attached to a device is automatically
1818
changed to a random UUID on each mount.
1919

2020
Once the seeding device is mounted, it needs the writable device. After adding
21-
it, something like :command:`remount -o remount,rw /path` makes the filesystem at
22-
*/path* ready for use. The simplest use case is to throw away all changes by
23-
unmounting the filesystem when convenient.
21+
it, unmounting and mounting with :command:`umount /path; mount /dev/writable
22+
/path` or remounting read-write with :command:`remount -o remount,rw` makes the
23+
filesystem at :file:`/path` ready for use.
2424

25-
Alternatively, deleting the seeding device from the filesystem can turn it into
25+
.. note::
26+
27+
There is a known bug with using remount to make the mount writeable:
28+
remount will leave the filesystem in a state where it is unable to
29+
clean deleted snapshots, so it will leak space until it is unmounted
30+
and mounted properly.
31+
32+
Furthermore, deleting the seeding device from the filesystem can turn it into
2633
a normal filesystem, provided that the writable device can also contain all the
2734
data from the seeding device.
2835

@@ -45,7 +52,8 @@ Example how to create and use one seeding device:
4552
4653
# mount /dev/sda /mnt/mnt1
4754
# btrfs device add /dev/sdb /mnt/mnt1
48-
# mount -o remount,rw /mnt/mnt1
55+
# umount /mnt/mnt1
56+
# mount /dev/sdb /mnt/mnt1
4957
... /mnt/mnt1 is now writable
5058
5159
Now */mnt/mnt1* can be used normally. The device */dev/sda* can be mounted
@@ -55,7 +63,8 @@ again with a another writable device:
5563
5664
# mount /dev/sda /mnt/mnt2
5765
# btrfs device add /dev/sdc /mnt/mnt2
58-
# mount -o remount,rw /mnt/mnt2
66+
# umount /mnt/mnt2
67+
# mount /dev/sdc /mnt/mnt2
5968
... /mnt/mnt2 is now writable
6069
6170
The writable device (*/dev/sdb*) can be decoupled from the seeding device and
@@ -76,6 +85,10 @@ A few things to note:
7685
* block group profiles *single* and *dup* support the use cases above
7786
* the label is copied from the seeding device and can be changed by :command:`btrfs filesystem label`
7887
* each new mount of the seeding device gets a new random UUID
88+
* :command:`umount /path; mount /dev/writable /path` can be replaced with
89+
:command:`mount -o remount,rw /path`
90+
but it won't reclaim space of deleted subvolumes until the seeding device
91+
is mounted read-write again before making it seeding again
7992

8093
Chained seeding devices
8194
^^^^^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)