summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ctree.c
diff options
context:
space:
mode:
authorJohannes Thumshirn <jthumshirn@suse.de>2019-10-07 11:11:01 +0200
committerDavid Sterba <dsterba@suse.com>2019-11-18 17:51:43 +0100
commit3951e7f050ac6a38bbc859fc3cd6093890c31d1c (patch)
treeb49451495af0de54ebc02ccf5e479b6108ce033d /fs/btrfs/ctree.c
parent8530c37a70df71ea8a04fbafabba0b92f4475c6c (diff)
downloadlinux-stable-3951e7f050ac6a38bbc859fc3cd6093890c31d1c.tar.gz
linux-stable-3951e7f050ac6a38bbc859fc3cd6093890c31d1c.tar.bz2
linux-stable-3951e7f050ac6a38bbc859fc3cd6093890c31d1c.zip
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 'fs/btrfs/ctree.c')
-rw-r--r--fs/btrfs/ctree.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
index 739757978686..7463c121791d 100644
--- a/fs/btrfs/ctree.c
+++ b/fs/btrfs/ctree.c
@@ -34,6 +34,7 @@ static const struct btrfs_csums {
const char *name;
} btrfs_csums[] = {
[BTRFS_CSUM_TYPE_CRC32] = { .size = 4, .name = "crc32c" },
+ [BTRFS_CSUM_TYPE_XXHASH] = { .size = 8, .name = "xxhash64" },
};
int btrfs_super_csum_size(const struct btrfs_super_block *s)