Linux 4.14.124
[linux/fpc-iii.git] / mm / vmacache.c
blobf1729617dc85c0fb39c629e1a5d6e2cc2660b9f1
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) 2014 Davidlohr Bueso.
4 */
5 #include <linux/sched/signal.h>
6 #include <linux/sched/task.h>
7 #include <linux/mm.h>
8 #include <linux/vmacache.h>
11 * This task may be accessing a foreign mm via (for example)
12 * get_user_pages()->find_vma(). The vmacache is task-local and this
13 * task's vmacache pertains to a different mm (ie, its own). There is
14 * nothing we can do here.
16 * Also handle the case where a kernel thread has adopted this mm via use_mm().
17 * That kernel thread's vmacache is not applicable to this mm.
19 static inline bool vmacache_valid_mm(struct mm_struct *mm)
21 return current->mm == mm && !(current->flags & PF_KTHREAD);
24 void vmacache_update(unsigned long addr, struct vm_area_struct *newvma)
26 if (vmacache_valid_mm(newvma->vm_mm))
27 current->vmacache.vmas[VMACACHE_HASH(addr)] = newvma;
30 static bool vmacache_valid(struct mm_struct *mm)
32 struct task_struct *curr;
34 if (!vmacache_valid_mm(mm))
35 return false;
37 curr = current;
38 if (mm->vmacache_seqnum != curr->vmacache.seqnum) {
40 * First attempt will always be invalid, initialize
41 * the new cache for this task here.
43 curr->vmacache.seqnum = mm->vmacache_seqnum;
44 vmacache_flush(curr);
45 return false;
47 return true;
50 struct vm_area_struct *vmacache_find(struct mm_struct *mm, unsigned long addr)
52 int i;
54 count_vm_vmacache_event(VMACACHE_FIND_CALLS);
56 if (!vmacache_valid(mm))
57 return NULL;
59 for (i = 0; i < VMACACHE_SIZE; i++) {
60 struct vm_area_struct *vma = current->vmacache.vmas[i];
62 if (!vma)
63 continue;
64 if (WARN_ON_ONCE(vma->vm_mm != mm))
65 break;
66 if (vma->vm_start <= addr && vma->vm_end > addr) {
67 count_vm_vmacache_event(VMACACHE_FIND_HITS);
68 return vma;
72 return NULL;
75 #ifndef CONFIG_MMU
76 struct vm_area_struct *vmacache_find_exact(struct mm_struct *mm,
77 unsigned long start,
78 unsigned long end)
80 int i;
82 count_vm_vmacache_event(VMACACHE_FIND_CALLS);
84 if (!vmacache_valid(mm))
85 return NULL;
87 for (i = 0; i < VMACACHE_SIZE; i++) {
88 struct vm_area_struct *vma = current->vmacache.vmas[i];
90 if (vma && vma->vm_start == start && vma->vm_end == end) {
91 count_vm_vmacache_event(VMACACHE_FIND_HITS);
92 return vma;
96 return NULL;
98 #endif