aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/blkdev.h
diff options
context:
space:
mode:
authorMartin K. Petersen <martin.petersen@oracle.com>2014-09-26 19:19:57 -0400
committerJens Axboe <axboe@fb.com>2014-09-27 11:14:50 -0400
commit8492b68bc4025e7bce1d57761bd7c047efda2f81 (patch)
treeef444c4e2a55354e1d7c515e4e5e800f0734168d /include/linux/blkdev.h
parent180b2f95dd331010a9930a65c8a18d6d81b94dc1 (diff)
block: Remove integrity tagging functions
None of the filesystems appear interested in using the integrity tagging feature. Potentially because very few storage devices actually permit using the application tag space. Remove the tagging functions. Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Sagi Grimberg <sagig@mellanox.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r--include/linux/blkdev.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index 7fcb2caef559..0bf5d79d9ba0 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -1472,14 +1472,10 @@ struct blk_integrity_exchg {
1472 1472
1473typedef void (integrity_gen_fn) (struct blk_integrity_exchg *); 1473typedef void (integrity_gen_fn) (struct blk_integrity_exchg *);
1474typedef int (integrity_vrfy_fn) (struct blk_integrity_exchg *); 1474typedef int (integrity_vrfy_fn) (struct blk_integrity_exchg *);
1475typedef void (integrity_set_tag_fn) (void *, void *, unsigned int);
1476typedef void (integrity_get_tag_fn) (void *, void *, unsigned int);
1477 1475
1478struct blk_integrity { 1476struct blk_integrity {
1479 integrity_gen_fn *generate_fn; 1477 integrity_gen_fn *generate_fn;
1480 integrity_vrfy_fn *verify_fn; 1478 integrity_vrfy_fn *verify_fn;
1481 integrity_set_tag_fn *set_tag_fn;
1482 integrity_get_tag_fn *get_tag_fn;
1483 1479
1484 unsigned short flags; 1480 unsigned short flags;
1485 unsigned short tuple_size; 1481 unsigned short tuple_size;