diff options
author | weiyongjun (A) <weiyongjun1@huawei.com> | 2018-03-28 14:11:58 +0300 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2018-04-04 19:12:36 +0300 |
commit | d4b1aaf53c02e6440c49aeae06ba3a3a8ce9882a (patch) | |
tree | 08b18b8003b8629a913d800646b621ae9951e448 /drivers/md | |
parent | 843f38d382b1ca2f6f4ae2ef7c35933e6319ffbb (diff) | |
download | linux-d4b1aaf53c02e6440c49aeae06ba3a3a8ce9882a.tar.xz |
dm verity: make verity_for_io_block static
Fixes the following sparse warning:
drivers/md/dm-verity-target.c:375:6: warning:
symbol 'verity_for_io_block' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-verity-target.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/dm-verity-target.c b/drivers/md/dm-verity-target.c index 14c620992794..037ba17e3a3e 100644 --- a/drivers/md/dm-verity-target.c +++ b/drivers/md/dm-verity-target.c @@ -348,8 +348,8 @@ out: /* * Calculates the digest for the given bio */ -int verity_for_io_block(struct dm_verity *v, struct dm_verity_io *io, - struct bvec_iter *iter, struct crypto_wait *wait) +static int verity_for_io_block(struct dm_verity *v, struct dm_verity_io *io, + struct bvec_iter *iter, struct crypto_wait *wait) { unsigned int todo = 1 << v->data_dev_block_bits; struct bio *bio = dm_bio_from_per_bio_data(io, v->ti->per_io_data_size); |