]> git.hungrycats.org Git - linux/commit
dm io: fix duplicate bio completion due to missing ref count
authorMike Snitzer <snitzer@redhat.com>
Tue, 20 Jun 2017 23:14:30 +0000 (19:14 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 11 Mar 2018 15:12:19 +0000 (16:12 +0100)
commit91e5f485ec89c4b49fdde28b18d959535d500b3d
treedd8e1969f74955e69882a5f13f90a86e32240986
parent11523616183342c775d1f88fada910fc188239ce
dm io: fix duplicate bio completion due to missing ref count

commit feb7695fe9fb83084aa29de0094774f4c9d4c9fc upstream.

If only a subset of the devices associated with multiple regions support
a given special operation (eg. DISCARD) then the dec_count() that is
used to set error for the region must increment the io->count.

Otherwise, when the dec_count() is called it can cause the dm-io
caller's bio to be completed multiple times.  As was reported against
the dm-mirror target that had mirror legs with a mix of discard
capabilities.

Bug: https://bugzilla.kernel.org/show_bug.cgi?id=196077
Reported-by: Zhang Yi <yizhan@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/md/dm-io.c