staticinlinebool is_crashed_pfn_valid(unsignedlong pfn)
{ #ifndef CONFIG_X86_PAE /* * non-PAE kdump kernel executed from a PAE one will crop high pte * bits and poke unwanted space counting again from address 0, we * don't want that. pte must fit into unsigned long. In fact the * test checks high 12 bits for being zero (pfn will be shifted left * by PAGE_SHIFT).
*/ return pte_pfn(pfn_pte(pfn, __pgprot(0))) == pfn; #else returntrue; #endif
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.