Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f06f135d authored by Thiago Farina's avatar Thiago Farina Committed by Jens Axboe
Browse files

fs/bio.c: fix shadows sparse warning



fs/bio.c:81:33: warning: symbol 'bslab' shadows an earlier one
fs/bio.c:74:25: originally declared here

Signed-off-by: default avatarThiago Farina <tfransosi@gmail.com>
Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
parent 2705ca79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ static struct kmem_cache *bio_find_or_create_slab(unsigned int extra_size)

	i = 0;
	while (i < bio_slab_nr) {
		struct bio_slab *bslab = &bio_slabs[i];
		bslab = &bio_slabs[i];

		if (!bslab->slab && entry == -1)
			entry = i;