btrfs: fix uninitialized variable warning in run_one_async_start
authorJosef Bacik <josef@toxicpanda.com>
Fri, 16 Dec 2022 20:15:51 +0000 (15:15 -0500)
committerDavid Sterba <dsterba@suse.com>
Mon, 13 Feb 2023 16:50:33 +0000 (17:50 +0100)
commita6ca692ec22bdac5ae700e82ff575a1b5141fa40
tree11b34e3988ea02c6abb48301d786ed5044c2c73d
parentcd30d3bc78d9acbd505d0d6a4cff3b87e40a8187
btrfs: fix uninitialized variable warning in run_one_async_start

With -Wmaybe-uninitialized compiler complains about ret being possibly
uninitialized, which isn't possible as the WQ_ constants are set only
from our code, however we can handle the default case and get rid of the
warning.

The value is set to BLK_STS_IOERR so it does not issue any IO and could
be potentially detected, but this is basically a "cannot happen" error.
To catch any problems during development use the assert.

Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
[ set the error in default: ]
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/disk-io.c