Merge remote-tracking branch 'asoc/fix/omap' into asoc-linus
[linux-block.git] / lib / crc-t10dif.c
CommitLineData
f11f594e
MP
1/*
2 * T10 Data Integrity Field CRC16 calculation
3 *
4 * Copyright (c) 2007 Oracle Corporation. All rights reserved.
5 * Written by Martin K. Petersen <martin.petersen@oracle.com>
6 *
7 * This source code is licensed under the GNU General Public License,
8 * Version 2. See the file COPYING for more details.
9 */
10
11#include <linux/types.h>
12#include <linux/module.h>
13#include <linux/crc-t10dif.h>
2d31e518
TC
14#include <linux/err.h>
15#include <linux/init.h>
16#include <crypto/hash.h>
f11f594e 17
2d31e518 18static struct crypto_shash *crct10dif_tfm;
f11f594e
MP
19
20__u16 crc_t10dif(const unsigned char *buffer, size_t len)
21{
2d31e518
TC
22 struct {
23 struct shash_desc shash;
24 char ctx[2];
25 } desc;
26 int err;
27
28 desc.shash.tfm = crct10dif_tfm;
29 desc.shash.flags = 0;
30 *(__u16 *)desc.ctx = 0;
f11f594e 31
2d31e518
TC
32 err = crypto_shash_update(&desc.shash, buffer, len);
33 BUG_ON(err);
f11f594e 34
2d31e518 35 return *(__u16 *)desc.ctx;
f11f594e
MP
36}
37EXPORT_SYMBOL(crc_t10dif);
38
2d31e518
TC
39static int __init crc_t10dif_mod_init(void)
40{
41 crct10dif_tfm = crypto_alloc_shash("crct10dif", 0, 0);
67822649 42 return PTR_RET(crct10dif_tfm);
2d31e518
TC
43}
44
45static void __exit crc_t10dif_mod_fini(void)
46{
47 crypto_free_shash(crct10dif_tfm);
48}
49
50module_init(crc_t10dif_mod_init);
51module_exit(crc_t10dif_mod_fini);
52
f11f594e
MP
53MODULE_DESCRIPTION("T10 DIF CRC calculation");
54MODULE_LICENSE("GPL");