suspend.c 642 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Suspend support specific for power.
  3. *
  4. * Distribute under GPLv2
  5. *
  6. * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
  7. * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
  8. */
  9. #include <linux/mm.h>
  10. #include <asm/page.h>
  11. /* References to section boundaries */
  12. extern const void __nosave_begin, __nosave_end;
  13. /*
  14. * pfn_is_nosave - check if given pfn is in the 'nosave' section
  15. */
  16. int pfn_is_nosave(unsigned long pfn)
  17. {
  18. unsigned long nosave_begin_pfn = __pa(&__nosave_begin) >> PAGE_SHIFT;
  19. unsigned long nosave_end_pfn = PAGE_ALIGN(__pa(&__nosave_end)) >> PAGE_SHIFT;
  20. return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
  21. }