]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
lightnvm/pblk-read: use bio_clone_fast()
authorNeilBrown <neilb@suse.com>
Sun, 18 Jun 2017 04:38:58 +0000 (14:38 +1000)
committerJens Axboe <axboe@kernel.dk>
Sun, 18 Jun 2017 18:40:59 +0000 (12:40 -0600)
pblk_submit_read() uses bio_clone_bioset() but doesn't change the
io_vec, so bio_clone_fast() is a better choice.

It also uses fs_bio_set which is intended for filesystems.  Using it
in a device driver can deadlock.
So allocate a new bioset, and and use bio_clone_fast().

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Javier González <javier@cnexlabs.com>
Tested-by: Javier González <javier@cnexlabs.com>
Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/lightnvm/pblk-init.c
drivers/lightnvm/pblk-read.c
drivers/lightnvm/pblk.h

index b3fec8ec55b892eee6cd91a4e8ecdd4171907646..aaefbccce30e1fac8ceeacbfe28d2cd8620e7b03 100644 (file)
@@ -23,6 +23,7 @@
 static struct kmem_cache *pblk_blk_ws_cache, *pblk_rec_cache, *pblk_r_rq_cache,
                                        *pblk_w_rq_cache, *pblk_line_meta_cache;
 static DECLARE_RWSEM(pblk_lock);
+struct bio_set *pblk_bio_set;
 
 static int pblk_rw_io(struct request_queue *q, struct pblk *pblk,
                          struct bio *bio)
@@ -946,11 +947,20 @@ static struct nvm_tgt_type tt_pblk = {
 
 static int __init pblk_module_init(void)
 {
-       return nvm_register_tgt_type(&tt_pblk);
+       int ret;
+
+       pblk_bio_set = bioset_create(BIO_POOL_SIZE, 0, 0);
+       if (!pblk_bio_set)
+               return -ENOMEM;
+       ret = nvm_register_tgt_type(&tt_pblk);
+       if (ret)
+               bioset_free(pblk_bio_set);
+       return ret;
 }
 
 static void pblk_module_exit(void)
 {
+       bioset_free(pblk_bio_set);
        nvm_unregister_tgt_type(&tt_pblk);
 }
 
index 762c0b73cb67a0cff1cf2e2a084ebc73971432e5..74d3fc53022e59eda4633ad4b8d038cfc5ec5b6a 100644 (file)
@@ -342,7 +342,7 @@ int pblk_submit_read(struct pblk *pblk, struct bio *bio)
                struct pblk_r_ctx *r_ctx = nvm_rq_to_pdu(rqd);
 
                /* Clone read bio to deal with read errors internally */
-               int_bio = bio_clone_bioset(bio, GFP_KERNEL, fs_bio_set);
+               int_bio = bio_clone_fast(bio, GFP_KERNEL, pblk_bio_set);
                if (!int_bio) {
                        pr_err("pblk: could not clone read bio\n");
                        return NVM_IO_ERR;
index 99f3186b5288b64f19ee46b67fb9bb3190311f40..95b665f239251162865445da75c8b2331111c7a6 100644 (file)
@@ -702,6 +702,7 @@ void pblk_write_should_kick(struct pblk *pblk);
 /*
  * pblk read path
  */
+extern struct bio_set *pblk_bio_set;
 int pblk_submit_read(struct pblk *pblk, struct bio *bio);
 int pblk_submit_read_gc(struct pblk *pblk, u64 *lba_list, void *data,
                        unsigned int nr_secs, unsigned int *secs_to_gc,