for (i = 0; i < ARRAY_SIZE(protection_map); i++)
protection_map[i] = pgprot_encrypted(protection_map[i]);
}
pgprot_t vm_get_page_prot(vm_flags_t vm_flags)
{ unsignedlong val = pgprot_val(protection_map[vm_flags &
(VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]);
#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS /* * Take the 4 protection key bits out of the vma->vm_flags value and * turn them in to the bits that we can put in to a pte. * * Only override these if Protection Keys are available (which is only * on 64-bit).
*/ if (vm_flags & VM_PKEY_BIT0)
val |= _PAGE_PKEY_BIT0; if (vm_flags & VM_PKEY_BIT1)
val |= _PAGE_PKEY_BIT1; if (vm_flags & VM_PKEY_BIT2)
val |= _PAGE_PKEY_BIT2; if (vm_flags & VM_PKEY_BIT3)
val |= _PAGE_PKEY_BIT3; #endif
val = __sme_set(val); if (val & _PAGE_PRESENT)
val &= __supported_pte_mask; return __pgprot(val);
}
EXPORT_SYMBOL(vm_get_page_prot);
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.