OSDN Git Service

percpu: fix first chunk size calculation for populated bitmap
authorSunghyun Jin <mcsmonk@gmail.com>
Thu, 3 Sep 2020 12:41:16 +0000 (21:41 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 23 Sep 2020 10:11:01 +0000 (12:11 +0200)
commit5afd52f302cac2700c59b86d19c329c0ba918977
tree4bebff0b5b1322d35581d166f8426e4d7875f9af
parentcb0978891ba6c7be05b4d0d71004a50f57cc1530
percpu: fix first chunk size calculation for populated bitmap

commit b3b33d3c43bbe0177d70653f4e889c78cc37f097 upstream.

Variable populated, which is a member of struct pcpu_chunk, is used as a
unit of size of unsigned long.
However, size of populated is miscounted. So, I fix this minor part.

Fixes: 8ab16c43ea79 ("percpu: change the number of pages marked in the first_chunk pop bitmap")
Cc: <stable@vger.kernel.org> # 4.14+
Signed-off-by: Sunghyun Jin <mcsmonk@gmail.com>
Signed-off-by: Dennis Zhou <dennis@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
mm/percpu.c