]> git.baikalelectronics.ru Git - kernel.git/commit
dm snapshot: properly fix a crash when an origin has no snapshots
authorMikulas Patocka <mpatocka@redhat.com>
Tue, 25 May 2021 17:17:19 +0000 (13:17 -0400)
committerMike Snitzer <snitzer@redhat.com>
Tue, 25 May 2021 20:19:58 +0000 (16:19 -0400)
commite67ddf11ddd610f1f063e1a28c909f7c8ca9e287
tree7397bddfe9ebf6e2f5586e805b00ae0532f67b76
parent8696f9b00cb00f21c19f421f177f6c40b6986149
dm snapshot: properly 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.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Cc: stable@vger.kernel.org
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/dm-snap.c