drivers/block/zram/zram_drv.c | 53 ++++++++++++-----------------------
1 file changed, 18 insertions(+), 35 deletions(-)
Signed-off-by: Chaitanya Kulkarni <kch@nvidia.com>
---
drivers/block/zram/zram_drv.c | 53 ++++++++++++-----------------------
1 file changed, 18 insertions(+), 35 deletions(-)
@@ -1873,38 +1873,12 @@ static void zram_bio_discard(struct zram *zram, struct bio *bio)
bio_endio(bio);
}
-static void zram_bio_read(struct zram *zram, struct bio *bio)
-{
- struct bvec_iter iter;
- struct bio_vec bv;
- unsigned long start_time;
-
- start_time = bio_start_io_acct(bio);
- bio_for_each_segment(bv, bio, iter) {
- u32 index = iter.bi_sector >> SECTORS_PER_PAGE_SHIFT;
- u32 offset = (iter.bi_sector & (SECTORS_PER_PAGE - 1)) <<
- SECTOR_SHIFT;
-
- if (zram_bvec_read(zram, &bv, index, offset, bio) < 0) {
- atomic64_inc(&zram->stats.failed_reads);
- bio->bi_status = BLK_STS_IOERR;
- break;
- }
- flush_dcache_page(bv.bv_page);
-
- zram_slot_lock(zram, index);
- zram_accessed(zram, index);
- zram_slot_unlock(zram, index);
- }
- bio_end_io_acct(bio, start_time);
- bio_endio(bio);
-}
-
-static void zram_bio_write(struct zram *zram, struct bio *bio)
+static void zram_bio_rw(struct zram *zram, struct bio *bio)
{
struct bvec_iter iter;
struct bio_vec bv;
unsigned long start_time;
+ int ret;
start_time = bio_start_io_acct(bio);
bio_for_each_segment(bv, bio, iter) {
@@ -1912,10 +1886,21 @@ static void zram_bio_write(struct zram *zram, struct bio *bio)
u32 offset = (iter.bi_sector & (SECTORS_PER_PAGE - 1)) <<
SECTOR_SHIFT;
- if (zram_bvec_write(zram, &bv, index, offset, bio) < 0) {
- atomic64_inc(&zram->stats.failed_writes);
- bio->bi_status = BLK_STS_IOERR;
- break;
+ if (op_is_write(bio_op(bio))) {
+ ret = zram_bvec_write(zram, &bv, index, offset, bio);
+ if (ret < 0) {
+ atomic64_inc(&zram->stats.failed_writes);
+ bio->bi_status = BLK_STS_IOERR;
+ break;
+ }
+ } else {
+ ret = zram_bvec_read(zram, &bv, index, offset, bio);
+ if (ret < 0) {
+ atomic64_inc(&zram->stats.failed_reads);
+ bio->bi_status = BLK_STS_IOERR;
+ break;
+ }
+ flush_dcache_page(bv.bv_page);
}
zram_slot_lock(zram, index);
@@ -1935,10 +1920,8 @@ static void zram_submit_bio(struct bio *bio)
switch (bio_op(bio)) {
case REQ_OP_READ:
- zram_bio_read(zram, bio);
- break;
case REQ_OP_WRITE:
- zram_bio_write(zram, bio);
+ zram_bio_rw(zram, bio);
break;
case REQ_OP_DISCARD:
case REQ_OP_WRITE_ZEROES: