vmacache.c 3.1 KB
Newer Older
D
Davidlohr Bueso 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright (C) 2014 Davidlohr Bueso.
 */
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/vmacache.h>

/*
 * Flush vma caches for threads that share a given mm.
 *
 * The operation is safe because the caller holds the mmap_sem
 * exclusively and other threads accessing the vma cache will
 * have mmap_sem held at least for read, so no extra locking
 * is required to maintain the vma cache.
 */
void vmacache_flush_all(struct mm_struct *mm)
{
	struct task_struct *g, *p;

20 21
	count_vm_vmacache_event(VMACACHE_FULL_FLUSHES);

22 23 24 25 26 27 28 29 30 31
	/*
	 * Single threaded tasks need not iterate the entire
	 * list of process. We can avoid the flushing as well
	 * since the mm's seqnum was increased and don't have
	 * to worry about other threads' seqnum. Current's
	 * flush will occur upon the next lookup.
	 */
	if (atomic_read(&mm->mm_users) == 1)
		return;

D
Davidlohr Bueso 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
	rcu_read_lock();
	for_each_process_thread(g, p) {
		/*
		 * Only flush the vmacache pointers as the
		 * mm seqnum is already set and curr's will
		 * be set upon invalidation when the next
		 * lookup is done.
		 */
		if (mm == p->mm)
			vmacache_flush(p);
	}
	rcu_read_unlock();
}

/*
 * This task may be accessing a foreign mm via (for example)
 * get_user_pages()->find_vma().  The vmacache is task-local and this
 * task's vmacache pertains to a different mm (ie, its own).  There is
 * nothing we can do here.
 *
 * Also handle the case where a kernel thread has adopted this mm via use_mm().
 * That kernel thread's vmacache is not applicable to this mm.
 */
55
static inline bool vmacache_valid_mm(struct mm_struct *mm)
D
Davidlohr Bueso 已提交
56 57 58 59 60 61 62
{
	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))
63
		current->vmacache.vmas[VMACACHE_HASH(addr)] = newvma;
D
Davidlohr Bueso 已提交
64 65 66 67 68 69 70 71 72 73
}

static bool vmacache_valid(struct mm_struct *mm)
{
	struct task_struct *curr;

	if (!vmacache_valid_mm(mm))
		return false;

	curr = current;
74
	if (mm->vmacache_seqnum != curr->vmacache.seqnum) {
D
Davidlohr Bueso 已提交
75 76 77 78
		/*
		 * First attempt will always be invalid, initialize
		 * the new cache for this task here.
		 */
79
		curr->vmacache.seqnum = mm->vmacache_seqnum;
D
Davidlohr Bueso 已提交
80 81 82 83 84 85 86 87 88 89
		vmacache_flush(curr);
		return false;
	}
	return true;
}

struct vm_area_struct *vmacache_find(struct mm_struct *mm, unsigned long addr)
{
	int i;

A
Alexey Dobriyan 已提交
90 91
	count_vm_vmacache_event(VMACACHE_FIND_CALLS);

D
Davidlohr Bueso 已提交
92 93 94 95
	if (!vmacache_valid(mm))
		return NULL;

	for (i = 0; i < VMACACHE_SIZE; i++) {
96
		struct vm_area_struct *vma = current->vmacache.vmas[i];
D
Davidlohr Bueso 已提交
97

98 99 100 101
		if (!vma)
			continue;
		if (WARN_ON_ONCE(vma->vm_mm != mm))
			break;
D
Davidlohr Bueso 已提交
102 103
		if (vma->vm_start <= addr && vma->vm_end > addr) {
			count_vm_vmacache_event(VMACACHE_FIND_HITS);
D
Davidlohr Bueso 已提交
104
			return vma;
D
Davidlohr Bueso 已提交
105
		}
D
Davidlohr Bueso 已提交
106 107 108 109 110 111 112 113 114 115 116 117
	}

	return NULL;
}

#ifndef CONFIG_MMU
struct vm_area_struct *vmacache_find_exact(struct mm_struct *mm,
					   unsigned long start,
					   unsigned long end)
{
	int i;

A
Alexey Dobriyan 已提交
118 119
	count_vm_vmacache_event(VMACACHE_FIND_CALLS);

D
Davidlohr Bueso 已提交
120 121 122 123
	if (!vmacache_valid(mm))
		return NULL;

	for (i = 0; i < VMACACHE_SIZE; i++) {
124
		struct vm_area_struct *vma = current->vmacache.vmas[i];
D
Davidlohr Bueso 已提交
125

D
Davidlohr Bueso 已提交
126 127
		if (vma && vma->vm_start == start && vma->vm_end == end) {
			count_vm_vmacache_event(VMACACHE_FIND_HITS);
D
Davidlohr Bueso 已提交
128
			return vma;
D
Davidlohr Bueso 已提交
129
		}
D
Davidlohr Bueso 已提交
130 131 132 133 134
	}

	return NULL;
}
#endif