Contributors: 5
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Eric Biggers |
56 |
50.00% |
2 |
28.57% |
Herbert Xu |
25 |
22.32% |
2 |
28.57% |
Martin K. Petersen |
17 |
15.18% |
1 |
14.29% |
Akinobu Mita |
13 |
11.61% |
1 |
14.29% |
Greg Kroah-Hartman |
1 |
0.89% |
1 |
14.29% |
Total |
112 |
|
7 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_CRC_T10DIF_H
#define _LINUX_CRC_T10DIF_H
#include <linux/types.h>
u16 crc_t10dif_arch(u16 crc, const u8 *p, size_t len);
u16 crc_t10dif_generic(u16 crc, const u8 *p, size_t len);
static inline u16 crc_t10dif_update(u16 crc, const u8 *p, size_t len)
{
if (IS_ENABLED(CONFIG_CRC_T10DIF_ARCH))
return crc_t10dif_arch(crc, p, len);
return crc_t10dif_generic(crc, p, len);
}
static inline u16 crc_t10dif(const u8 *p, size_t len)
{
return crc_t10dif_update(0, p, len);
}
#endif