aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/blkdev.h
diff options
context:
space:
mode:
authorJens Axboe <jens.axboe@oracle.com>2008-06-18 04:15:02 -0400
committerJens Axboe <jens.axboe@oracle.com>2008-07-03 07:21:14 -0400
commit6e2401ad6f33de15ff00f78b88159f00a14f3b35 (patch)
tree7dbcb7e08703745a9a60de77114d82e2385f7c6a /include/linux/blkdev.h
parentda9cbc87395308a21465bd25441297bbba0477e1 (diff)
block: integrity cleanups
- No need to check for NULL bio, we'll get an immediate oops anyway. - Make bio_integrity() a proper function. Signed-off-by: Jens Axboe <jens.axboe@oracle.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 443df75d2cde..d3ae9ad97213 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -860,7 +860,6 @@ void kblockd_flush_work(struct work_struct *work);
860#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \ 860#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
861 MODULE_ALIAS("block-major-" __stringify(major) "-*") 861 MODULE_ALIAS("block-major-" __stringify(major) "-*")
862 862
863
864#if defined(CONFIG_BLK_DEV_INTEGRITY) 863#if defined(CONFIG_BLK_DEV_INTEGRITY)
865 864
866#define INTEGRITY_FLAG_READ 1 /* verify data integrity on read */ 865#define INTEGRITY_FLAG_READ 1 /* verify data integrity on read */
@@ -945,8 +944,6 @@ static inline int bdev_integrity_enabled(struct block_device *bdev, int rw)
945 944
946static inline int blk_integrity_rq(struct request *rq) 945static inline int blk_integrity_rq(struct request *rq)
947{ 946{
948 BUG_ON(rq->bio == NULL);
949
950 return bio_integrity(rq->bio); 947 return bio_integrity(rq->bio);
951} 948}
952 949
@@ -963,7 +960,6 @@ static inline int blk_integrity_rq(struct request *rq)
963 960
964#endif /* CONFIG_BLK_DEV_INTEGRITY */ 961#endif /* CONFIG_BLK_DEV_INTEGRITY */
965 962
966
967#else /* CONFIG_BLOCK */ 963#else /* CONFIG_BLOCK */
968/* 964/*
969 * stubs for when the block layer is configured out 965 * stubs for when the block layer is configured out