bcache: reduce redundant code in bch_cached_dev_run()
authorZhiqiang Liu <liuzhiqiang26@huawei.com>
Sun, 11 Apr 2021 13:43:10 +0000 (21:43 +0800)
committerJens Axboe <axboe@kernel.dk>
Sun, 11 Apr 2021 14:37:55 +0000 (08:37 -0600)
commit13e1db65d2b9263c3dfe447077981e7a32c857ae
treefc7b1b0fa985708d5663b1dda3079a6c945b4ff7
parentff917638359e2d0dc122acbb23b74be294ee3d77
bcache: reduce redundant code in bch_cached_dev_run()

In bch_cached_dev_run(), free(env[1])|free(env[2])|free(buf)
show up three times. This patch introduce out tag in
which free(env[1])|free(env[2])|free(buf) are only called
one time. If we need to call free() when errors occur,
we can set error code to ret, and then goto out tag directly.

Signed-off-by: Zhiqiang Liu <liuzhiqiang26@huawei.com>
Signed-off-by: Coly Li <colyli@suse.de>
Link: https://lore.kernel.org/r/20210411134316.80274-2-colyli@suse.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/super.c