OSDN Git Service

blk: Ensure users for current->bio_list can see the full list.
authorNeilBrown <neilb@suse.com>
Fri, 10 Mar 2017 06:00:47 +0000 (17:00 +1100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 8 Apr 2017 07:30:36 +0000 (09:30 +0200)
commit5959cded91e319524f4e09f747b03c477d9fbaef
treec36407ef9c7196f3b8dcd9acdf26cffdfd735cda
parentd5986e0078f25ee9862f3f13157f1421f18d6c64
blk: Ensure users for current->bio_list can see the full list.

commit f5fe1b51905df7cfe4fdfd85c5fb7bc5b71a094f upstream.

Commit 79bd99596b73 ("blk: improve order of bio handling in generic_make_request()")
changed current->bio_list so that it did not contain *all* of the
queued bios, but only those submitted by the currently running
make_request_fn.

There are two places which walk the list and requeue selected bios,
and others that check if the list is empty.  These are no longer
correct.

So redefine current->bio_list to point to an array of two lists, which
contain all queued bios, and adjust various code to test or walk both
lists.

Signed-off-by: NeilBrown <neilb@suse.com>
Fixes: 79bd99596b73 ("blk: improve order of bio handling in generic_make_request()")
Signed-off-by: Jens Axboe <axboe@fb.com>
Cc: Jack Wang <jinpu.wang@profitbricks.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
block/bio.c
block/blk-core.c
drivers/md/dm.c
drivers/md/raid10.c