]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
btrfs: fix error handling in btrfs_dev_replace_start
authorJeff Mahoney <jeffm@suse.com>
Thu, 6 Sep 2018 19:52:17 +0000 (15:52 -0400)
committerJuerg Haefliger <juergh@canonical.com>
Wed, 24 Jul 2019 01:58:31 +0000 (19:58 -0600)
commit1d5be357b4b64801a1f7b5ed8ddc1059bb3aa783
tree830d05898ba5db97ea2376e176e5d4337a9d022b
parentf174dbc7359f1e43be9efa3fcd43796d7be3afdb
btrfs: fix error handling in btrfs_dev_replace_start

BugLink: https://bugs.launchpad.net/bugs/1836802
commit 5c06147128fbbdf7a84232c5f0d808f53153defe upstream.

When we fail to start a transaction in btrfs_dev_replace_start, we leave
dev_replace->replace_start set to STARTED but clear ->srcdev and
->tgtdev.  Later, that can result in an Oops in
btrfs_dev_replace_progress when having state set to STARTED or SUSPENDED
implies that ->srcdev is valid.

Also fix error handling when the state is already STARTED or SUSPENDED
while starting.  That, too, will clear ->srcdev and ->tgtdev even though
it doesn't own them.  This should be an impossible case to hit since we
should be protected by the BTRFS_FS_EXCL_OP bit being set.  Let's add an
ASSERT there while we're at it.

Fixes: e93c89c1aaaaa (Btrfs: add new sources for device replace code)
CC: stable@vger.kernel.org # 4.4+
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
Signed-off-by: Khalid Elmously <khalid.elmously@canonical.com>
fs/btrfs/dev-replace.c