diff options
author | Jens Axboe <axboe@kernel.dk> | 2024-11-29 15:53:58 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-12-23 08:19:09 -0700 |
commit | 546d191427cf5cf3215529744c2ea8558f0279db (patch) | |
tree | 6123bfc502f41f27a04622ccf01273c8bc7ed95a | |
parent | 3d8b5a22d40435b4a7e58f06ae2cd3506b222898 (diff) |
block: make bio_integrity_map_user() static inline
If CONFIG_BLK_DEV_INTEGRITY isn't set, then the dummy helper must be
static inline to avoid complaints about the function being unused.
Fixes: fe8f4ca7107e ("block: modify bio_integrity_map_user to accept iov_iter as argument")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202411300229.y7h60mDg-lkp@intel.com/
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | include/linux/bio-integrity.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/bio-integrity.h b/include/linux/bio-integrity.h index de0a6c9de4d1..802f52e38efd 100644 --- a/include/linux/bio-integrity.h +++ b/include/linux/bio-integrity.h @@ -105,7 +105,7 @@ static inline void bioset_integrity_free(struct bio_set *bs) { } -static int bio_integrity_map_user(struct bio *bio, struct iov_iter *iter) +static inline int bio_integrity_map_user(struct bio *bio, struct iov_iter *iter) { return -EINVAL; } |