]> Git Repo - linux.git/commitdiff
raid5-ppl: use BIOSET_NEED_BVECS when creating bioset
authorArtur Paszkiewicz <[email protected]>
Tue, 11 Jul 2017 14:16:24 +0000 (16:16 +0200)
committerShaohua Li <[email protected]>
Wed, 12 Jul 2017 16:26:37 +0000 (09:26 -0700)
This bioset is used for allocating bios with nr_iovecs > 0 so this flag
must be set.

Fixes: 011067b05668 ("blk: replace bioset_create_nobvec() with a flags arg to bioset_create()")
Signed-off-by: Artur Paszkiewicz <[email protected]>
Signed-off-by: Shaohua Li <[email protected]>
drivers/md/raid5-ppl.c

index 77cce3573aa85b40b6e2492ac458405426cdaf6e..44ad5baf320684e61b1aee1549d15b6e68c0a732 100644 (file)
@@ -1150,7 +1150,7 @@ int ppl_init_log(struct r5conf *conf)
                goto err;
        }
 
-       ppl_conf->bs = bioset_create(conf->raid_disks, 0, 0);
+       ppl_conf->bs = bioset_create(conf->raid_disks, 0, BIOSET_NEED_BVECS);
        if (!ppl_conf->bs) {
                ret = -ENOMEM;
                goto err;
This page took 0.060997 seconds and 4 git commands to generate.