mm/highmem: make nr_free_highpages() return "unsigned long"
authorDavid Hildenbrand <david@redhat.com>
Fri, 7 Jun 2024 08:37:11 +0000 (10:37 +0200)
committerAndrew Morton <akpm@linux-foundation.org>
Thu, 4 Jul 2024 02:30:06 +0000 (19:30 -0700)
commit90b8fab5cdc441735d388e286c715da7c85b24f1
tree1bbe974d59fc4707f5fe487a317b0d9817431d1d
parent7a581204b1fa4fed233ed3b7ffcf6847cc383dbc
mm/highmem: make nr_free_highpages() return "unsigned long"

It looks rather weird that totalhigh_pages() returns an "unsigned long"
but nr_free_highpages() returns an "unsigned int".

Let's return an "unsigned long" from nr_free_highpages() to be consistent.

While at it, use a plain "0" instead of a "0UL" in the !CONFIG_HIGHMEM
totalhigh_pages() implementation, to make these look alike as well.

Link: https://lkml.kernel.org/r/20240607083711.62833-3-david@redhat.com
Signed-off-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Wei Yang <richard.weiyang@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/highmem-internal.h
include/linux/highmem.h
mm/highmem.c