x86: return the page table level in lookup_address()
based on this patch from Andi Kleen: | Subject: CPA: Return the page table level in lookup_address() | From: Andi Kleen <ak@suse.de> | | Needed for the next change. | | And change all the callers. and ported it to x86.git. Signed-off-by: Andi Kleen <ak@suse.de> Acked-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
@ -535,11 +535,12 @@ int __init set_kernel_exec(unsigned long vaddr, int enable)
|
||||
{
|
||||
pte_t *pte;
|
||||
int ret = 1;
|
||||
int level;
|
||||
|
||||
if (!nx_enabled)
|
||||
goto out;
|
||||
|
||||
pte = lookup_address(vaddr);
|
||||
pte = lookup_address(vaddr, &level);
|
||||
BUG_ON(!pte);
|
||||
|
||||
if (!pte_exec(*pte))
|
||||
|
Reference in New Issue
Block a user