index
:
linux-dev
linus/master
master
Linux kernel development work - see feature branches
Jason A. Donenfeld
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Age
Commit message (
Expand
)
Author
Files
Lines
2022-09-26
mm/memcontrol: stop using mm->highest_vm_end
Liam R. Howlett
1
-4
/
+2
2022-09-26
mm/madvise: use vma_find() instead of vma linked list
Liam R. Howlett
1
-1
/
+1
2022-09-26
mm/ksm: use vma iterators instead of vma linked list
Matthew Wilcox (Oracle)
1
-7
/
+11
2022-09-26
mm/khugepaged: stop using vma linked list
Matthew Wilcox (Oracle)
2
-5
/
+8
2022-09-26
mm/gup: use maple tree navigation instead of linked list
Liam R. Howlett
1
-3
/
+4
2022-09-26
bpf: remove VMA linked list
Liam R. Howlett
1
-5
/
+5
2022-09-26
fork: use VMA iterator
Matthew Wilcox (Oracle)
1
-2
/
+5
2022-09-26
sched: use maple tree iterator to walk VMAs
Matthew Wilcox (Oracle)
1
-3
/
+7
2022-09-26
perf: use VMA iterator
Matthew Wilcox (Oracle)
2
-4
/
+8
2022-09-26
acct: use VMA iterator instead of linked list
Matthew Wilcox (Oracle)
1
-6
/
+5
2022-09-26
ipc/shm: use VMA iterator instead of linked list
Liam R. Howlett
1
-11
/
+10
2022-09-26
userfaultfd: use maple tree iterator to iterate VMAs
Liam R. Howlett
3
-25
/
+46
2022-09-26
fs/proc/task_mmu: stop using linked list and highest_vm_end
Matthew Wilcox (Oracle)
2
-33
/
+42
2022-09-26
fs/proc/base: use the vma iterators in place of linked list
Liam R. Howlett
1
-1
/
+4
2022-09-26
exec: use VMA iterator instead of linked list
Matthew Wilcox (Oracle)
1
-3
/
+6
2022-09-26
coredump: remove vma linked list walk
Matthew Wilcox (Oracle)
1
-22
/
+12
2022-09-26
um: remove vma linked list walk
Matthew Wilcox (Oracle)
1
-8
/
+6
2022-09-26
optee: remove vma linked list walk
Matthew Wilcox (Oracle)
1
-8
/
+10
2022-09-26
cxl: remove vma linked list walk
Matthew Wilcox (Oracle)
1
-30
/
+15
2022-09-26
xtensa: remove vma linked list walks
Matthew Wilcox (Oracle)
1
-6
/
+12
2022-09-26
x86: remove vma linked list walks
Matthew Wilcox (Oracle)
1
-4
/
+5
2022-09-26
s390: remove vma linked list walks
Matthew Wilcox (Oracle)
2
-3
/
+6
2022-09-26
powerpc: remove mmap linked list walks
Matthew Wilcox (Oracle)
3
-19
/
+11
2022-09-26
parisc: remove mmap linked list from cache handling
Matthew Wilcox (Oracle)
1
-2
/
+7
2022-09-26
arm64: Change elfcore for_each_mte_vma() to use VMA iterator
Liam R. Howlett
1
-6
/
+10
2022-09-26
arm64: remove mmap linked list from vdso
Matthew Wilcox (Oracle)
1
-1
/
+2
2022-09-26
mm/mmap: change do_brk_munmap() to use do_mas_align_munmap()
Liam R. Howlett
1
-1
/
+1
2022-09-26
mm/mmap: reorganize munmap to use maple states
Liam R. Howlett
3
-92
/
+158
2022-09-26
mm/mmap: move mmap_region() below do_munmap()
Liam R. Howlett
1
-245
/
+245
2022-09-26
mm: convert vma_lookup() to use mtree_load()
Liam R. Howlett
1
-6
/
+1
2022-09-26
mm: remove vmacache
Liam R. Howlett
17
-267
/
+9
2022-09-26
mm/mmap: use advanced maple tree API for mmap_region()
Liam R. Howlett
1
-48
/
+203
2022-09-26
mm: use maple tree operations for find_vma_intersection()
Liam R. Howlett
3
-18
/
+44
2022-09-26
mm/mmap: change do_brk_flags() to expand existing VMA and add do_brk_munmap()
Liam R. Howlett
1
-60
/
+177
2022-09-26
mm/khugepaged: optimize collapse_pte_mapped_thp() by using vma_lookup()
Liam R. Howlett
1
-1
/
+1
2022-09-26
mm: optimize find_exact_vma() to use vma_lookup()
Liam R. Howlett
1
-1
/
+1
2022-09-26
xen: use vma_lookup() in privcmd_ioctl_mmap()
Liam R. Howlett
1
-1
/
+1
2022-09-26
mmap: change zeroing of maple tree in __vma_adjust()
Liam R. Howlett
1
-8
/
+22
2022-09-26
mm: remove rb tree.
Liam R. Howlett
9
-487
/
+144
2022-09-26
proc: remove VMA rbtree use from nommu
Matthew Wilcox (Oracle)
1
-24
/
+21
2022-09-26
damon: convert __damon_va_three_regions to use the VMA iterator
Liam R. Howlett
2
-48
/
+37
2022-09-26
kernel/fork: use maple tree for dup_mmap() during forking
Liam R. Howlett
2
-4
/
+13
2022-09-26
mm/mmap: use maple tree for unmapped_area{_topdown}
Liam R. Howlett
1
-221
/
+34
2022-09-26
mm/mmap: use the maple tree for find_vma_prev() instead of the rbtree
Liam R. Howlett
1
-10
/
+17
2022-09-26
mm/mmap: use the maple tree in find_vma() instead of the rbtree.
Liam R. Howlett
1
-18
/
+10
2022-09-26
mmap: use the VMA iterator in count_vma_pages_range()
Matthew Wilcox (Oracle)
1
-17
/
+7
2022-09-26
mm: add VMA iterator
Matthew Wilcox (Oracle)
3
-5
/
+58
2022-09-26
mm: start tracking VMAs with maple tree
Liam R. Howlett
9
-36
/
+435
2022-09-26
lib/test_maple_tree: add testing for maple tree
Liam R. Howlett
2
-2
/
+38314
2022-09-26
radix tree test suite: add lockdep_is_held to header
Liam R. Howlett
1
-0
/
+2
[next]