mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 04:50:57 +07:00
2341c2f8c3
The T10 Protection Information format is also used by some devices that do not go through the SCSI layer (virtual block devices, NVMe). Relocate the relevant functions to a block layer library that can be used without involving SCSI. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@fb.com>
14 lines
302 B
C
14 lines
302 B
C
#ifndef _LINUX_CRC_T10DIF_H
|
|
#define _LINUX_CRC_T10DIF_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define CRC_T10DIF_DIGEST_SIZE 2
|
|
#define CRC_T10DIF_BLOCK_SIZE 1
|
|
|
|
extern __u16 crc_t10dif_generic(__u16 crc, const unsigned char *buffer,
|
|
size_t len);
|
|
extern __u16 crc_t10dif(unsigned char const *, size_t);
|
|
|
|
#endif
|