1 // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 3 * Suspend support specific for power. 4 * 5 * Copyright (c) 2002 Pavel Machek <pavel@ucw. 6 * Copyright (c) 2001 Patrick Mochel <mochel@o 7 */ 8 9 #include <linux/mm.h> 10 #include <linux/suspend.h> 11 #include <asm/page.h> 12 #include <asm/sections.h> 13 14 /* 15 * pfn_is_nosave - check if given pfn is 16 */ 17 18 int pfn_is_nosave(unsigned long pfn) 19 { 20 unsigned long nosave_begin_pfn = __pa( 21 unsigned long nosave_end_pfn = PAGE_AL 22 return (pfn >= nosave_begin_pfn) && (p 23 } 24
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.