summaryrefslogtreecommitdiffstats
path: root/LICENSES/deprecated
diff options
context:
space:
mode:
authorMing Lei <ming.lei@redhat.com>2019-09-11 19:31:33 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-10-07 18:59:40 +0200
commit08519f370a57fb9b2480e8af7449a7c1c22f96a5 (patch)
tree9d8353f50e102b91917610ec3d2465f77d51074c /LICENSES/deprecated
parent069a73c9344775f29302180adf377b0ccfe295be (diff)
downloadlinux-stable-08519f370a57fb9b2480e8af7449a7c1c22f96a5.tar.gz
linux-stable-08519f370a57fb9b2480e8af7449a7c1c22f96a5.tar.bz2
linux-stable-08519f370a57fb9b2480e8af7449a7c1c22f96a5.zip
dm raid: fix updating of max_discard_sectors limit
commit c8156fc77d0796ba2618936dbb3084e769e916c1 upstream. Unit of 'chunk_size' is byte, instead of sector, so fix it by setting the queue_limits' max_discard_sectors to rs->md.chunk_sectors. Also, rename chunk_size to chunk_size_bytes. Without this fix, too big max_discard_sectors is applied on the request queue of dm-raid, finally raid code has to split the bio again. This re-split done by raid causes the following nested clone_endio: 1) one big bio 'A' is submitted to dm queue, and served as the original bio 2) one new bio 'B' is cloned from the original bio 'A', and .map() is run on this bio of 'B', and B's original bio points to 'A' 3) raid code sees that 'B' is too big, and split 'B' and re-submit the remainded part of 'B' to dm-raid queue via generic_make_request(). 4) now dm will handle 'B' as new original bio, then allocate a new clone bio of 'C' and run .map() on 'C'. Meantime C's original bio points to 'B'. 5) suppose now 'C' is completed by raid directly, then the following clone_endio() is called recursively: clone_endio(C) ->clone_endio(B) #B is original bio of 'C' ->bio_endio(A) 'A' can be big enough to make hundreds of nested clone_endio(), then stack can be corrupted easily. Fixes: 61697a6abd24a ("dm: eliminate 'split_discard_bios' flag from DM target interface") Cc: stable@vger.kernel.org Signed-off-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'LICENSES/deprecated')
0 files changed, 0 insertions, 0 deletions