mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
dm snapshot: properly fix a crash when an origin has no snapshots
commit 7e768532b2 upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cc5d84b1b0
commit
1a8ecc3cd1
|
|
@ -854,7 +854,7 @@ static int dm_add_exception(void *context, chunk_t old, chunk_t new)
|
||||||
static uint32_t __minimum_chunk_size(struct origin *o)
|
static uint32_t __minimum_chunk_size(struct origin *o)
|
||||||
{
|
{
|
||||||
struct dm_snapshot *snap;
|
struct dm_snapshot *snap;
|
||||||
unsigned chunk_size = 0;
|
unsigned chunk_size = rounddown_pow_of_two(UINT_MAX);
|
||||||
|
|
||||||
if (o)
|
if (o)
|
||||||
list_for_each_entry(snap, &o->snapshots, list)
|
list_for_each_entry(snap, &o->snapshots, list)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user