return ret;
 }
 
-static int __zram_bvec_read(struct zram *zram, struct page *page, u32 index,
-                           struct bio *bio, bool partial_io)
+static int zram_read_page(struct zram *zram, struct page *page, u32 index,
+                         struct bio *bio, bool partial_io)
 {
        int ret;
 
                        return -ENOMEM;
        }
 
-       ret = __zram_bvec_read(zram, page, index, bio, is_partial_io(bvec));
+       ret = zram_read_page(zram, page, index, bio, is_partial_io(bvec));
        if (unlikely(ret))
                goto out;
 
                if (!page)
                        return -ENOMEM;
 
-               ret = __zram_bvec_read(zram, page, index, bio, true);
+               ret = zram_read_page(zram, page, index, bio, true);
                if (ret)
                        goto out;