#include <linux/sched/signal.h>
#include <linux/sched/task.h>
#include <linux/vmacache.h>
#define VMACACHE_SHIFT PMD_SHIFT
#define VMACACHE_SHIFT PAGE_SHIFT
#define VMACACHE_HASH(addr) ((addr >> VMACACHE_SHIFT) & VMACACHE_MASK)
static inline bool vmacache_valid_mm(struct mm_struct *mm)
return current->mm == mm && !(current->flags & PF_KTHREAD);
void vmacache_update(unsigned long addr, struct vm_area_struct *newvma)
if (vmacache_valid_mm(newvma->vm_mm))
current->vmacache.vmas[VMACACHE_HASH(addr)] = newvma;
static bool vmacache_valid(struct mm_struct *mm)
struct task_struct *curr;
if (!vmacache_valid_mm(mm))
if (mm->vmacache_seqnum != curr->vmacache.seqnum) {
curr->vmacache.seqnum = mm->vmacache_seqnum;
struct vm_area_struct *vmacache_find(struct mm_struct *mm, unsigned long addr)