From 38334c1347e624237118d08f467aff35a8fcafe6 Mon Sep 17 00:00:00 2001 From: Damien Le Moal Date: Tue, 14 Dec 2021 10:24:03 +0900 Subject: [PATCH] zbd: define local functions as static Define zbd_get_zoned_model(), zbd_report_zones(), zbd_reset_wp() and zbd_get_max_open_zones() as static since these functions are used locally only. No functional changes. Signed-off-by: Damien Le Moal Reviewed-by: Niklas Cassel Link: https://lore.kernel.org/r/20211214012413.464798-3-damien.lemoal@opensource.wdc.com Signed-off-by: Jens Axboe --- zbd.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/zbd.c b/zbd.c index c18998c4..44e77227 100644 --- a/zbd.c +++ b/zbd.c @@ -27,8 +27,8 @@ * @td: FIO thread data * @f: FIO file for which to get model information */ -int zbd_get_zoned_model(struct thread_data *td, struct fio_file *f, - enum zbd_zoned_model *model) +static int zbd_get_zoned_model(struct thread_data *td, struct fio_file *f, + enum zbd_zoned_model *model) { int ret; @@ -71,9 +71,9 @@ int zbd_get_zoned_model(struct thread_data *td, struct fio_file *f, * upon failure. If the zone report is empty, always assume an error (device * problem) and return -EIO. */ -int zbd_report_zones(struct thread_data *td, struct fio_file *f, - uint64_t offset, struct zbd_zone *zones, - unsigned int nr_zones) +static int zbd_report_zones(struct thread_data *td, struct fio_file *f, + uint64_t offset, struct zbd_zone *zones, + unsigned int nr_zones) { int ret; @@ -105,8 +105,8 @@ int zbd_report_zones(struct thread_data *td, struct fio_file *f, * Reset the write pointer of all zones in the range @offset...@offset+@length. * Returns 0 upon success and a negative error code upon failure. */ -int zbd_reset_wp(struct thread_data *td, struct fio_file *f, - uint64_t offset, uint64_t length) +static int zbd_reset_wp(struct thread_data *td, struct fio_file *f, + uint64_t offset, uint64_t length) { int ret; @@ -133,8 +133,8 @@ int zbd_reset_wp(struct thread_data *td, struct fio_file *f, * * Returns 0 upon success and a negative error code upon failure. */ -int zbd_get_max_open_zones(struct thread_data *td, struct fio_file *f, - unsigned int *max_open_zones) +static int zbd_get_max_open_zones(struct thread_data *td, struct fio_file *f, + unsigned int *max_open_zones) { int ret; -- 2.25.1