Signed-off-by: Kirill Tkhai <[email protected]>
---
 drivers/md/dm-ploop-cmd.c |    4 ++--
 drivers/md/dm-ploop-map.c |   10 +++++-----
 drivers/md/dm-ploop.h     |    2 +-
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/md/dm-ploop-cmd.c b/drivers/md/dm-ploop-cmd.c
index c15175917ea2..e668a5b902d2 100644
--- a/drivers/md/dm-ploop-cmd.c
+++ b/drivers/md/dm-ploop-cmd.c
@@ -217,7 +217,7 @@ static int ploop_read_cluster_sync(struct ploop *ploop, 
struct pio *pio,
        pio->endio_cb = wake_completion;
        pio->endio_cb_data = &completion;
 
-       submit_rw_mapped(ploop, dst_cluster, pio, top_level(ploop));
+       map_and_submit_rw(ploop, dst_cluster, pio, top_level(ploop));
        wait_for_completion(&completion);
 
        if (pio->bi_status)
@@ -243,7 +243,7 @@ static int ploop_write_cluster_sync(struct ploop *ploop, 
struct pio *pio,
        pio->endio_cb = wake_completion;
        pio->endio_cb_data = &completion;
 
-       submit_rw_mapped(ploop, dst_cluster, pio, top_level(ploop));
+       map_and_submit_rw(ploop, dst_cluster, pio, top_level(ploop));
        wait_for_completion(&completion);
 
        if (pio->bi_status)
diff --git a/drivers/md/dm-ploop-map.c b/drivers/md/dm-ploop-map.c
index cb3790e0a074..4a4af29b7f7e 100644
--- a/drivers/md/dm-ploop-map.c
+++ b/drivers/md/dm-ploop-map.c
@@ -1015,7 +1015,7 @@ static void data_rw_complete(struct pio *pio)
        pio_endio(pio);
 }
 
-void submit_rw_mapped(struct ploop *ploop, u32 dst_clu, struct pio *pio, u8 
level)
+void map_and_submit_rw(struct ploop *ploop, u32 dst_clu, struct pio *pio, u8 
level)
 {
        unsigned int rw, nr_segs;
        struct bio_vec *bvec;
@@ -1051,7 +1051,7 @@ static void initiate_delta_read(struct ploop *ploop, 
unsigned int level,
                return;
        }
 
-       submit_rw_mapped(ploop, dst_cluster, pio, level);
+       map_and_submit_rw(ploop, dst_cluster, pio, level);
 }
 
 static void ploop_cow_endio(struct pio *cluster_pio, void *data, blk_status_t 
bi_status)
@@ -1108,7 +1108,7 @@ int submit_cluster_cow(struct ploop *ploop, unsigned int 
level,
        add_cluster_lk(ploop, &cow->aux_pio, cluster);
 
        /* Stage #0: read secondary delta full cluster */
-       submit_rw_mapped(ploop, dst_cluster, pio, level);
+       map_and_submit_rw(ploop, dst_cluster, pio, level);
        return 0;
 err:
        if (pio)
@@ -1158,7 +1158,7 @@ static void submit_cluster_write(struct ploop_cow *cow)
        pio->endio_cb = ploop_cow_endio;
        pio->endio_cb_data = cow;
 
-       submit_rw_mapped(ploop, dst_cluster, pio, top_level(ploop));
+       map_and_submit_rw(ploop, dst_cluster, pio, top_level(ploop));
        return;
 error:
        complete_cow(cow, BLK_STS_IOERR);
@@ -1367,7 +1367,7 @@ static int process_one_deferred_bio(struct ploop *ploop, 
struct pio *pio,
 queue:
        link_submitting_pio(ploop, pio, cluster);
 
-       submit_rw_mapped(ploop, dst_cluster, pio, top_level(ploop));
+       map_and_submit_rw(ploop, dst_cluster, pio, top_level(ploop));
 out:
        return 0;
 }
diff --git a/drivers/md/dm-ploop.h b/drivers/md/dm-ploop.h
index 12ae7adb5c30..9039d6ab3c49 100644
--- a/drivers/md/dm-ploop.h
+++ b/drivers/md/dm-ploop.h
@@ -495,7 +495,7 @@ extern struct pio *find_lk_of_cluster(struct ploop *ploop, 
u32 cluster);
 extern void init_pio(struct ploop *ploop, unsigned int bi_op, struct pio *pio);
 extern int ploop_rw_page_sync(unsigned rw, struct file *file,
                              u64 index, struct page *page);
-extern void submit_rw_mapped(struct ploop *ploop, u32 dst_clu, struct pio 
*pio, u8 level);
+extern void map_and_submit_rw(struct ploop *ploop, u32 dst_clu, struct pio 
*pio, u8 level);
 
 extern int ploop_prepare_reloc_index_wb(struct ploop *, struct ploop_index_wb 
*,
                                        unsigned int, unsigned int *);


_______________________________________________
Devel mailing list
[email protected]
https://lists.openvz.org/mailman/listinfo/devel

Reply via email to