summaryrefslogtreecommitdiff
path: root/fs/btrfs/hash.c
blob: f8a50e532aeeb5edabce60b50fbee1fc8b3b4289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * BTRFS filesystem implementation for U-Boot
 *
 * 2017 Marek Behun, CZ.NIC, marek.behun@nic.cz
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include "btrfs.h"
#include <u-boot/crc.h>

static u32 btrfs_crc32c_table[256];

void btrfs_hash_init(void)
{
	static int inited = 0;

	if (!inited) {
		crc32c_init(btrfs_crc32c_table, 0x82F63B78);
		inited = 1;
	}
}

u32 btrfs_crc32c(u32 crc, const void *data, size_t length)
{
	return crc32c_cal(crc, (const char *) data, length,
			  btrfs_crc32c_table);
}

u32 btrfs_csum_data(char *data, u32 seed, size_t len)
{
	return btrfs_crc32c(seed, data, len);
}

void btrfs_csum_final(u32 crc, void *result)
{
	*((u32 *) result) = cpu_to_le32(~crc);
}