mm/percpu: replace the goto with break
authorBaoquan He <bhe@redhat.com>
Mon, 24 Oct 2022 08:14:32 +0000 (16:14 +0800)
committerDennis Zhou <dennis@kernel.org>
Tue, 8 Nov 2022 06:59:15 +0000 (22:59 -0800)
commit83d261fc9e5fb03e8c32e365ca4ee53952611a2b
tree784cb37cf995c8e061eb2d5da9fb0b028989411b
parent73046f8d31701c379f6db899cb09ba70a3285143
mm/percpu: replace the goto with break

In function pcpu_reclaim_populated(), the line of goto jumping is
unnecessary since the label 'end_chunk' is near the end of the for
loop, use break instead.

Signed-off-by: Baoquan He <bhe@redhat.com>
Signed-off-by: Dennis Zhou <dennis@kernel.org>
mm/percpu.c