OSDN Git Service

m68k/mm: use __ClearPageReserved()
authorDavid Hildenbrand <david@redhat.com>
Tue, 5 Mar 2019 23:47:21 +0000 (15:47 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 6 Mar 2019 05:07:18 +0000 (21:07 -0800)
The PG_reserved flag is cleared from memory that is part of the kernel
image (and therefore marked as PG_reserved).  Avoid using PG_reserved
directly.

Link: http://lkml.kernel.org/r/20190114125903.24845-6-david@redhat.com
Signed-off-by: David Hildenbrand <david@redhat.com>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Matthew Wilcox <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/m68k/mm/memory.c

index b86a2e2..227c04f 100644 (file)
@@ -51,7 +51,7 @@ void __init init_pointer_table(unsigned long ptable)
        pr_debug("init_pointer_table: %lx, %x\n", ptable, PD_MARKBITS(dp));
 
        /* unreserve the page so it's possible to free that page */
-       PD_PAGE(dp)->flags &= ~(1 << PG_reserved);
+       __ClearPageReserved(PD_PAGE(dp));
        init_page_count(PD_PAGE(dp));
 
        return;