Staging: zram: make zram_read return a bio error if the device is not initialized
authorJerome Marchand <jmarchan@redhat.com>
Fri, 17 Dec 2010 16:03:15 +0000 (17:03 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 21 Jan 2011 00:07:00 +0000 (16:07 -0800)
Make zram_read() return a bio error if the device is not initialized
instead of pretending nothing happened.

Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
Acked-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/zram/zram_drv.c

index 0ab931e..01d6dd9 100644 (file)
@@ -208,8 +208,7 @@ static int zram_read(struct zram *zram, struct bio *bio)
        struct bio_vec *bvec;
 
        if (unlikely(!zram->init_done)) {
-               set_bit(BIO_UPTODATE, &bio->bi_flags);
-               bio_endio(bio, 0);
+               bio_endio(bio, -ENXIO);
                return 0;
        }