summaryrefslogtreecommitdiff
path: root/mm/swapfile.c
diff options
context:
space:
mode:
authorMiaohe Lin <linmiaohe@huawei.com>2020-10-14 02:52:27 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2020-10-14 04:38:30 +0300
commit7a3d52e45e00dd1cb1f2e81661e53e324e0a7b82 (patch)
tree699a2aece0b23d4273f664c0da1d56eddd6cf2f3 /mm/swapfile.c
parent12eab4289d3203be384d0c0733670c2c9daa1880 (diff)
downloadlinux-7a3d52e45e00dd1cb1f2e81661e53e324e0a7b82.tar.xz
mm/swapfile.c: remove unnecessary goto out in _swap_info_get()
It's unnecessary to goto the out label while out label is just below. Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Link: https://lkml.kernel.org/r/20200930102549.1885-1-linmiaohe@huawei.com Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/swapfile.c')
-rw-r--r--mm/swapfile.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c
index d5c19d0baf06..b23090c912f4 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -1184,7 +1184,6 @@ static struct swap_info_struct *_swap_info_get(swp_entry_t entry)
bad_free:
pr_err("swap_info_get: %s%08lx\n", Unused_offset, entry.val);
- goto out;
out:
return NULL;
}