]> git.ipfire.org Git - people/arne_f/kernel.git/commitdiff
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 08:46:36 +0000 (10:46 +0200)
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

index 9beb84800d8df3a7fe634974a43b325efd325cb1..b24d6fe6bd5ea48257c78f6a4fbfddef0939d7ce 100644 (file)
@@ -1099,7 +1099,7 @@ static struct pcpu_chunk * __init pcpu_alloc_first_chunk(unsigned long tmp_addr,
 
        /* allocate chunk */
        chunk = memblock_virt_alloc(sizeof(struct pcpu_chunk) +
-                                   BITS_TO_LONGS(region_size >> PAGE_SHIFT),
+                                   BITS_TO_LONGS(region_size >> PAGE_SHIFT) * sizeof(unsigned long),
                                    0);
 
        INIT_LIST_HEAD(&chunk->list);