diff options
author | Johannes Thumshirn <jthumshirn@suse.de> | 2019-10-07 11:11:01 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-11-18 17:51:43 +0100 |
commit | 3951e7f050ac6a38bbc859fc3cd6093890c31d1c (patch) | |
tree | b49451495af0de54ebc02ccf5e479b6108ce033d /include | |
parent | 8530c37a70df71ea8a04fbafabba0b92f4475c6c (diff) | |
download | linux-3951e7f050ac6a38bbc859fc3cd6093890c31d1c.tar.bz2 |
btrfs: add xxhash64 to checksumming algorithms
Add xxhash64 to the list of possible checksumming algorithms used by
BTRFS.
Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/btrfs_tree.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/btrfs_tree.h b/include/uapi/linux/btrfs_tree.h index 44136de2f5d7..962312939a8f 100644 --- a/include/uapi/linux/btrfs_tree.h +++ b/include/uapi/linux/btrfs_tree.h @@ -302,6 +302,7 @@ /* csum types */ enum btrfs_csum_type { BTRFS_CSUM_TYPE_CRC32 = 0, + BTRFS_CSUM_TYPE_XXHASH = 1, }; /* |