2021-11-30 15:00:48 +00:00
|
|
|
Reflink
|
|
|
|
=======
|
|
|
|
|
2021-12-09 19:46:42 +00:00
|
|
|
Reflink is a type of shallow copy of file data that shares the blocks but
|
|
|
|
otherwise the files are independent and any change to the file will not affect
|
|
|
|
the other. This builds on the underlying COW mechanism. A reflink will
|
|
|
|
effectively create only a separate metadata pointing to the shared blocks which
|
|
|
|
is typically much faster than a deep copy of all blocks.
|
|
|
|
|
|
|
|
The reflink is typically meant for whole files but a partial file range can be
|
|
|
|
also copied, though there are no ready-made tools for that.
|
|
|
|
|
|
|
|
.. code-block:: shell
|
|
|
|
|
|
|
|
cp --reflink=always source target
|
|
|
|
|
|
|
|
There are some constaints:
|
|
|
|
|
|
|
|
- cross-filesystem reflink is not possible, there's nothing in common between
|
|
|
|
so the block sharing can't work
|
|
|
|
- reflink crossing two mount points of the same filesystem does not work due
|
|
|
|
to an artificial limitation in VFS (this may change in the future)
|
|
|
|
- reflink requires source and target file that have the same status regarding
|
|
|
|
NOCOW and checksums, for example if the source file is NOCOW (once created
|
|
|
|
with the chattr +C attribute) then the above command won't work unless the
|
|
|
|
target file is pre-created with the +C attribute as well, or the NOCOW
|
|
|
|
attribute is inherited from the parent directory (chattr +C on the directory)
|
|
|
|
or if the whole filesystem is mounted with *-o nodatacow* that would create
|
|
|
|
the NOCOW files by default
|