-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option --reflink to deduplicate identical files via filesystem reflinks. Reflink is done via the FICLONE ioctl, and allows to share the file content across multiple inodes. This is similar to hardlink, with two substantial differences: - each copy has its own metadata (permissions, timestamps, attributes, etc.) - on write, the content is copied (CoW) so the changes are not reflected to all other copies Currently implemented only on Linux, it works with BtrFS and XFS (and ZFS to some extents)
- Loading branch information
1 parent
482509f
commit c28cf8b
Showing
3 changed files
with
83 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters