diff options
| author | Jens Axboe <axboe@kernel.dk> | 2024-06-27 04:01:58 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-08-14 14:59:02 +0300 |
| commit | 163f7dd80237517c6858dd98243da60b29dad18a (patch) | |
| tree | 46bb4d1fa0edf0fdaeaa10bfded20e0f4b3171e0 /include | |
| parent | d4c67071f481145a84591b97abc309c772d68dfb (diff) | |
| download | linux-163f7dd80237517c6858dd98243da60b29dad18a.tar.xz | |
block: use the right type for stub rq_integrity_vec()
commit 69b6517687a4b1fb250bd8c9c193a0a304c8ba17 upstream.
For !CONFIG_BLK_DEV_INTEGRITY, rq_integrity_vec() wasn't updated
properly. Fix it up.
Fixes: cf546dd289e0 ("block: change rq_integrity_vec to respect the iterator")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Cc: Matthieu Baerts <matttbe@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/blk-integrity.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blk-integrity.h b/include/linux/blk-integrity.h index 69f73d054611..f7cc8080672c 100644 --- a/include/linux/blk-integrity.h +++ b/include/linux/blk-integrity.h @@ -175,7 +175,7 @@ static inline int blk_integrity_rq(struct request *rq) return 0; } -static inline struct bio_vec *rq_integrity_vec(struct request *rq) +static inline struct bio_vec rq_integrity_vec(struct request *rq) { /* the optimizer will remove all calls to this function */ return (struct bio_vec){ }; |
