lightnvm: pblk: add debug stat for read cache hits
authorJavier González <jg@lightnvm.io>
Mon, 26 Jun 2017 09:57:13 +0000 (11:57 +0200)
committerJens Axboe <axboe@kernel.dk>
Mon, 26 Jun 2017 22:24:53 +0000 (16:24 -0600)
Add a new debug counter to measure cache hits on the read path

Signed-off-by: Javier González <javier@cnexlabs.com>
Signed-off-by: Matias Bjørling <matias@cnexlabs.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/lightnvm/pblk-init.c
drivers/lightnvm/pblk-read.c
drivers/lightnvm/pblk-sysfs.c
drivers/lightnvm/pblk.h

index aaefbccce30e1fac8ceeacbfe28d2cd8620e7b03..2d79336748eea65949b814a9d7a996f105e56731 100644 (file)
@@ -839,6 +839,7 @@ static void *pblk_init(struct nvm_tgt_dev *dev, struct gendisk *tdisk,
        atomic_long_set(&pblk->sync_writes, 0);
        atomic_long_set(&pblk->compl_writes, 0);
        atomic_long_set(&pblk->inflight_reads, 0);
+       atomic_long_set(&pblk->cache_reads, 0);
        atomic_long_set(&pblk->sync_reads, 0);
        atomic_long_set(&pblk->recov_writes, 0);
        atomic_long_set(&pblk->recov_writes, 0);
index 74d3fc53022e59eda4633ad4b8d038cfc5ec5b6a..f12f40a41558b0ed7141bae027252489574c4feb 100644 (file)
@@ -76,6 +76,9 @@ retry:
                        }
                        WARN_ON(test_and_set_bit(i, read_bitmap));
                        advanced_bio = 1;
+#ifdef CONFIG_NVM_DEBUG
+                       atomic_long_inc(&pblk->cache_reads);
+#endif
                } else {
                        /* Read from media non-cached sectors */
                        rqd->ppa_list[j++] = p;
@@ -280,6 +283,9 @@ retry:
                        goto retry;
                }
                WARN_ON(test_and_set_bit(0, read_bitmap));
+#ifdef CONFIG_NVM_DEBUG
+                       atomic_long_inc(&pblk->cache_reads);
+#endif
        } else {
                rqd->ppa_addr = ppa;
        }
index f0af1d1ceeff1185fe12d8f02d3330886821b904..3c1a586c09a2ad5d9b236e3ad2dd184b9162cd60 100644 (file)
@@ -294,7 +294,7 @@ static ssize_t pblk_sysfs_lines_info(struct pblk *pblk, char *page)
 static ssize_t pblk_sysfs_stats_debug(struct pblk *pblk, char *page)
 {
        return snprintf(page, PAGE_SIZE,
-               "%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\n",
+               "%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\n",
                        atomic_long_read(&pblk->inflight_writes),
                        atomic_long_read(&pblk->inflight_reads),
                        atomic_long_read(&pblk->req_writes),
@@ -307,6 +307,7 @@ static ssize_t pblk_sysfs_stats_debug(struct pblk *pblk, char *page)
                        atomic_long_read(&pblk->recov_writes),
                        atomic_long_read(&pblk->recov_gc_writes),
                        atomic_long_read(&pblk->recov_gc_reads),
+                       atomic_long_read(&pblk->cache_reads),
                        atomic_long_read(&pblk->sync_reads));
 }
 #endif
index 95b665f239251162865445da75c8b2331111c7a6..77ee42a3f5141b0f2c58f44b08d603189f9f9388 100644 (file)
@@ -513,6 +513,7 @@ struct pblk {
        atomic_long_t sync_writes;      /* Sectors synced to media */
        atomic_long_t compl_writes;     /* Sectors completed in write bio */
        atomic_long_t inflight_reads;   /* Inflight sector read requests */
+       atomic_long_t cache_reads;      /* Read requests that hit the cache */
        atomic_long_t sync_reads;       /* Completed sector read requests */
        atomic_long_t recov_writes;     /* Sectors submitted from recovery */
        atomic_long_t recov_gc_writes;  /* Sectors submitted from write GC */