]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
zram: remove init_lock in zram_make_request
authorMinchan Kim <minchan@kernel.org>
Thu, 12 Feb 2015 23:00:45 +0000 (15:00 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 13 Feb 2015 02:54:12 +0000 (18:54 -0800)
Admin could reset zram during I/O operation going on so we have used
zram->init_lock as read-side lock in I/O path to prevent sudden zram
meta freeing.

However, the init_lock is really troublesome.  We can't do call
zram_meta_alloc under init_lock due to lockdep splat because
zram_rw_page is one of the function under reclaim path and hold it as
read_lock while other places in process context hold it as write_lock.
So, we have used allocation out of the lock to avoid lockdep warn but
it's not good for readability and fainally, I met another lockdep splat
between init_lock and cpu_hotplug from kmem_cache_destroy during working
zsmalloc compaction.  :(

Yes, the ideal is to remove horrible init_lock of zram in rw path.  This
patch removes it in rw path and instead, add atomic refcount for meta
lifetime management and completion to free meta in process context.
It's important to free meta in process context because some of resource
destruction needs mutex lock, which could be held if we releases the
resource in reclaim context so it's deadlock, again.

As a bonus, we could remove init_done check in rw path because
zram_meta_get will do a role for it, instead.

Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Minchan Kim <minchan@kernel.org>
Cc: Nitin Gupta <ngupta@vflare.org>
Cc: Jerome Marchand <jmarchan@redhat.com>
Cc: Ganesh Mahendran <opensource.ganesh@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/block/zram/zram_drv.c
drivers/block/zram/zram_drv.h

index 0abcf4a31c786ca09ab03596ac0752be23c948dd..db94572b35c41e6226f47cd96b8375878aa0fdaa 100644 (file)
@@ -53,9 +53,9 @@ static ssize_t name##_show(struct device *d,          \
 }                                                                      \
 static DEVICE_ATTR_RO(name);
 
-static inline int init_done(struct zram *zram)
+static inline bool init_done(struct zram *zram)
 {
-       return zram->meta != NULL;
+       return zram->disksize;
 }
 
 static inline struct zram *dev_to_zram(struct device *dev)
@@ -356,6 +356,18 @@ out_error:
        return NULL;
 }
 
+static inline bool zram_meta_get(struct zram *zram)
+{
+       if (atomic_inc_not_zero(&zram->refcount))
+               return true;
+       return false;
+}
+
+static inline void zram_meta_put(struct zram *zram)
+{
+       atomic_dec(&zram->refcount);
+}
+
 static void update_position(u32 *index, int *offset, struct bio_vec *bvec)
 {
        if (*offset + bvec->bv_len >= PAGE_SIZE)
@@ -717,6 +729,10 @@ static void zram_bio_discard(struct zram *zram, u32 index,
 
 static void zram_reset_device(struct zram *zram)
 {
+       struct zram_meta *meta;
+       struct zcomp *comp;
+       u64 disksize;
+
        down_write(&zram->init_lock);
 
        zram->limit_pages = 0;
@@ -726,16 +742,31 @@ static void zram_reset_device(struct zram *zram)
                return;
        }
 
-       zcomp_destroy(zram->comp);
-       zram->max_comp_streams = 1;
-       zram_meta_free(zram->meta, zram->disksize);
-       zram->meta = NULL;
+       meta = zram->meta;
+       comp = zram->comp;
+       disksize = zram->disksize;
+       /*
+        * Refcount will go down to 0 eventually and r/w handler
+        * cannot handle further I/O so it will bail out by
+        * check zram_meta_get.
+        */
+       zram_meta_put(zram);
+       /*
+        * We want to free zram_meta in process context to avoid
+        * deadlock between reclaim path and any other locks.
+        */
+       wait_event(zram->io_done, atomic_read(&zram->refcount) == 0);
+
        /* Reset stats */
        memset(&zram->stats, 0, sizeof(zram->stats));
        zram->disksize = 0;
+       zram->max_comp_streams = 1;
        set_capacity(zram->disk, 0);
 
        up_write(&zram->init_lock);
+       /* I/O operation under all of CPU are done so let's free */
+       zram_meta_free(meta, disksize);
+       zcomp_destroy(comp);
 }
 
 static ssize_t disksize_store(struct device *dev,
@@ -771,6 +802,8 @@ static ssize_t disksize_store(struct device *dev,
                goto out_destroy_comp;
        }
 
+       init_waitqueue_head(&zram->io_done);
+       atomic_set(&zram->refcount, 1);
        zram->meta = meta;
        zram->comp = comp;
        zram->disksize = disksize;
@@ -901,23 +934,21 @@ static void zram_make_request(struct request_queue *queue, struct bio *bio)
 {
        struct zram *zram = queue->queuedata;
 
-       down_read(&zram->init_lock);
-       if (unlikely(!init_done(zram)))
+       if (unlikely(!zram_meta_get(zram)))
                goto error;
 
        if (!valid_io_request(zram, bio->bi_iter.bi_sector,
                                        bio->bi_iter.bi_size)) {
                atomic64_inc(&zram->stats.invalid_io);
-               goto error;
+               goto put_zram;
        }
 
        __zram_make_request(zram, bio);
-       up_read(&zram->init_lock);
-
+       zram_meta_put(zram);
        return;
-
+put_zram:
+       zram_meta_put(zram);
 error:
-       up_read(&zram->init_lock);
        bio_io_error(bio);
 }
 
@@ -939,21 +970,19 @@ static void zram_slot_free_notify(struct block_device *bdev,
 static int zram_rw_page(struct block_device *bdev, sector_t sector,
                       struct page *page, int rw)
 {
-       int offset, err;
+       int offset, err = -EIO;
        u32 index;
        struct zram *zram;
        struct bio_vec bv;
 
        zram = bdev->bd_disk->private_data;
+       if (unlikely(!zram_meta_get(zram)))
+               goto out;
+
        if (!valid_io_request(zram, sector, PAGE_SIZE)) {
                atomic64_inc(&zram->stats.invalid_io);
-               return -EINVAL;
-       }
-
-       down_read(&zram->init_lock);
-       if (unlikely(!init_done(zram))) {
-               err = -EIO;
-               goto out_unlock;
+               err = -EINVAL;
+               goto put_zram;
        }
 
        index = sector >> SECTORS_PER_PAGE_SHIFT;
@@ -964,8 +993,9 @@ static int zram_rw_page(struct block_device *bdev, sector_t sector,
        bv.bv_offset = 0;
 
        err = zram_bvec_rw(zram, &bv, index, offset, rw);
-out_unlock:
-       up_read(&zram->init_lock);
+put_zram:
+       zram_meta_put(zram);
+out:
        /*
         * If I/O fails, just return error(ie, non-zero) without
         * calling page_endio.
index b05a816b09acbf41ba5067274f36c601bd4dbb00..5249f51ccdb38513180c6150ca227e238417b16f 100644 (file)
@@ -100,24 +100,26 @@ struct zram_meta {
 
 struct zram {
        struct zram_meta *meta;
+       struct zcomp *comp;
        struct request_queue *queue;
        struct gendisk *disk;
-       struct zcomp *comp;
-
-       /* Prevent concurrent execution of device init, reset and R/W request */
+       /* Prevent concurrent execution of device init */
        struct rw_semaphore init_lock;
        /*
-        * This is the limit on amount of *uncompressed* worth of data
-        * we can store in a disk.
+        * the number of pages zram can consume for storing compressed data
         */
-       u64 disksize;   /* bytes */
+       unsigned long limit_pages;
        int max_comp_streams;
+
        struct zram_stats stats;
+       atomic_t refcount; /* refcount for zram_meta */
+       /* wait all IO under all of cpu are done */
+       wait_queue_head_t io_done;
        /*
-        * the number of pages zram can consume for storing compressed data
+        * This is the limit on amount of *uncompressed* worth of data
+        * we can store in a disk.
         */
-       unsigned long limit_pages;
-
+       u64 disksize;   /* bytes */
        char compressor[10];
 };
 #endif