dm raid: fix panic when attempting to force a raid to sync
authorHeinz Mauelshagen <heinzm@redhat.com>
Thu, 2 Nov 2017 18:58:28 +0000 (19:58 +0100)
committerMike Snitzer <snitzer@redhat.com>
Fri, 10 Nov 2017 20:45:00 +0000 (15:45 -0500)
commit233978449074ca7e45d9c959f9ec612d1b852893
treefa141e1354055cf394fca1eb9aaf16b426a5b73c
parent95b1369a9638cfa322ad1c0cde8efbe524059884
dm raid: fix panic when attempting to force a raid to sync

Requesting a sync on an active raid device via a table reload
(see 'sync' parameter in Documentation/device-mapper/dm-raid.txt)
skips the super_load() call that defines the superblock size
(rdev->sb_size) -- resulting in an oops if/when super_sync()->memset()
is called.

Fix by moving the initialization of the superblock start and size
out of super_load() to the caller (analyse_superblocks).

Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/dm-raid.c