]> git.baikalelectronics.ru Git - kernel.git/commit
dm snapshot: fix a crash when an origin has no snapshots
authorMikulas Patocka <mpatocka@redhat.com>
Fri, 7 May 2021 15:38:10 +0000 (11:38 -0400)
committerMike Snitzer <snitzer@redhat.com>
Mon, 10 May 2021 15:11:36 +0000 (11:11 -0400)
commit1c9f098c28d1e37bb4b7e243eca2a874f9389f98
tree031bf1397372f0c2f2d3180e16619578387f1c75
parent9fb51bb203ba1c67f480638e9d0605db59810687
dm snapshot: fix a crash when an origin has no snapshots

If an origin target has no snapshots, o->split_boundary is set to 0.
This causes BUG_ON(sectors <= 0) in block/bio.c:bio_split().

Fix this by initializing chunk_size, and in turn split_boundary, to
rounddown_pow_of_two(UINT_MAX) -- the largest power of two that fits
into "unsigned" type.

Reported-by: Michael Tokarev <mjt@tls.msk.ru>
Tested-by: Michael Tokarev <mjt@tls.msk.ru>
Cc: stable@vger.kernel.org
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/dm-snap.c