
< 	pte_t ptent = ptep_get(pte);
---
> 	if (pte < vma->vm_start || pte >= vma->vm_end) {
> 		return;
> 	}
> 	pte_t ptent = ptep_get(pte);
