mm/swapfile.c: remove unnecessary out label in __swap_duplicate()
authorMiaohe Lin <linmiaohe@huawei.com>
Tue, 15 Dec 2020 03:06:04 +0000 (19:06 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 15 Dec 2020 20:13:39 +0000 (12:13 -0800)
commit9d9a03340309cb8065503cfa3c5c5fc8b7670230
tree87f4fc34b9e59b796372b2559b64e60d79d2c7b3
parente97af69950ffe8be4ee12b331924b8de8a17b73e
mm/swapfile.c: remove unnecessary out label in __swap_duplicate()

When the code went to the out label, it must have p == NULL.  So what out
label really does is redundant if check and return err.  We should Remove
this unnecessary out label because it does not handle resource free and so
on.

Link: https://lkml.kernel.org/r/20201009130337.29698-1-linmiaohe@huawei.com
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/swapfile.c