aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorMike Snitzer <snitzer@kernel.org>2023-08-25 14:43:30 -0400
committerMike Snitzer <snitzer@kernel.org>2024-02-20 13:43:16 -0500
commitebe16015c389bcc1721dfdcba74c13100b849a5b (patch)
tree7998cc65c222c8063934b111199f82cb1b95312a /drivers/md
parentf7f46761ccd9b46392ff14e22b8c2ed9f5ecc06d (diff)
downloadlinux-ebe16015c389bcc1721dfdcba74c13100b849a5b.tar.gz
dm vdo io-submitter: rename to vdo_submit_flush_vio
Rename submit_flush_vio() to vdo_submit_flush_vio(). Reviewed-by: Susan LeGendre-McGhee <slegendr@redhat.com> Signed-off-by: Mike Snitzer <snitzer@kernel.org> Signed-off-by: Matthew Sakai <msakai@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-vdo/block-map.c2
-rw-r--r--drivers/md/dm-vdo/io-submitter.h4
-rw-r--r--drivers/md/dm-vdo/recovery-journal.c2
-rw-r--r--drivers/md/dm-vdo/slab-depot.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/drivers/md/dm-vdo/block-map.c b/drivers/md/dm-vdo/block-map.c
index 0df1517294e1d..1edb3b2a80eb2 100644
--- a/drivers/md/dm-vdo/block-map.c
+++ b/drivers/md/dm-vdo/block-map.c
@@ -835,7 +835,7 @@ static void save_pages(struct vdo_page_cache *cache)
* successfully persisted, and thus must issue a flush before each batch of pages is
* written to ensure this.
*/
- submit_flush_vio(vio, flush_endio, handle_flush_error);
+ vdo_submit_flush_vio(vio, flush_endio, handle_flush_error);
}
/**
diff --git a/drivers/md/dm-vdo/io-submitter.h b/drivers/md/dm-vdo/io-submitter.h
index 9e97cfc91bee9..77b8df6d559e9 100644
--- a/drivers/md/dm-vdo/io-submitter.h
+++ b/drivers/md/dm-vdo/io-submitter.h
@@ -36,8 +36,8 @@ static inline void vdo_submit_metadata_vio(struct vio *vio, physical_block_numbe
operation, vio->data);
}
-static inline void submit_flush_vio(struct vio *vio, bio_end_io_t callback,
- vdo_action_fn error_handler)
+static inline void vdo_submit_flush_vio(struct vio *vio, bio_end_io_t callback,
+ vdo_action_fn error_handler)
{
/* FIXME: Can we just use REQ_OP_FLUSH? */
__submit_metadata_vio(vio, 0, callback, error_handler,
diff --git a/drivers/md/dm-vdo/recovery-journal.c b/drivers/md/dm-vdo/recovery-journal.c
index 55411eff5bd7b..2dfc39deef946 100644
--- a/drivers/md/dm-vdo/recovery-journal.c
+++ b/drivers/md/dm-vdo/recovery-journal.c
@@ -1541,7 +1541,7 @@ static void reap_recovery_journal(struct recovery_journal *journal)
* summary update covering the slab journal that just released some lock.
*/
journal->reaping = true;
- submit_flush_vio(journal->flush_vio, flush_endio, handle_flush_error);
+ vdo_submit_flush_vio(journal->flush_vio, flush_endio, handle_flush_error);
}
/**
diff --git a/drivers/md/dm-vdo/slab-depot.c b/drivers/md/dm-vdo/slab-depot.c
index 5fc4a1cdfafc6..670a464ddbb0a 100644
--- a/drivers/md/dm-vdo/slab-depot.c
+++ b/drivers/md/dm-vdo/slab-depot.c
@@ -449,7 +449,7 @@ static void flush_for_reaping(struct waiter *waiter, void *context)
struct vio *vio = &pooled->vio;
vio->completion.parent = journal;
- submit_flush_vio(vio, flush_endio, handle_flush_error);
+ vdo_submit_flush_vio(vio, flush_endio, handle_flush_error);
}
/**