]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/t10-pi.h
Merge tag 'v4.8' into next
[mirror_ubuntu-zesty-kernel.git] / include / linux / t10-pi.h
CommitLineData
2341c2f8
MP
1#ifndef _LINUX_T10_PI_H
2#define _LINUX_T10_PI_H
3
4#include <linux/types.h>
5#include <linux/blkdev.h>
6
7/*
8 * T10 Protection Information tuple.
9 */
10struct t10_pi_tuple {
11 __be16 guard_tag; /* Checksum */
12 __be16 app_tag; /* Opaque storage */
13 __be32 ref_tag; /* Target LBA or indirect LBA */
14};
15
16
0f8087ec
MP
17extern struct blk_integrity_profile t10_pi_type1_crc;
18extern struct blk_integrity_profile t10_pi_type1_ip;
19extern struct blk_integrity_profile t10_pi_type3_crc;
20extern struct blk_integrity_profile t10_pi_type3_ip;
2341c2f8
MP
21
22#endif