| Age | Commit message (Expand) | Author | Files | Lines |
| 2023-01-11 | mm: update mmap_sem comments to refer to mmap_lock | Lorenzo Stoakes | 1 | -2/+2 |
| 2023-01-11 | mm/userfaultfd: enable writenotify while userfaultfd-wp is enabled for a VMA | David Hildenbrand | 1 | -0/+4 |
| 2022-12-13 | Merge tag 'mm-stable-2022-12-13' of git://git.kernel.org/pub/scm/linux/kernel... | Linus Torvalds | 1 | -8/+4 |
| 2022-12-11 | mm/mmap: properly unaccount memory on mas_preallocate() failure | Alistair Popple | 1 | -3/+3 |
| 2022-12-10 | Merge tag 'mm-hotfixes-stable-2022-12-10-1' of git://git.kernel.org/pub/scm/l... | Linus Torvalds | 1 | -10/+4 |
| 2022-12-09 | Merge branch 'mm-hotfixes-stable' into mm-stable | Andrew Morton | 1 | -10/+4 |
| 2022-12-09 | mmap: fix do_brk_flags() modifying obviously incorrect VMAs | Liam Howlett | 1 | -8/+3 |
| 2022-12-09 | mm: do not BUG_ON missing brk mapping, because userspace can unmap it | Jason A. Donenfeld | 1 | -2/+1 |
| 2022-12-04 | Revert "mm: align larger anonymous mappings on THP boundaries" | Linus Torvalds | 1 | -3/+0 |
| 2022-11-30 | Merge branch 'mm-hotfixes-stable' into mm-stable | Andrew Morton | 1 | -2/+6 |
| 2022-11-22 | mm: mmap: fix documentation for vma_mas_szero | Ian Cowan | 1 | -1/+1 |
| 2022-11-08 | memory: move hotplug memory notifier priority to same file for easy sorting | Liu Shixin | 1 | -1/+1 |
| 2022-11-08 | mm/mmap: use hotplug_memory_notifier() directly | Liu Shixin | 1 | -5/+1 |
| 2022-11-08 | mm/mmap: fix memory leak in mmap_region() | Li Zetao | 1 | -1/+5 |
| 2022-10-28 | mmap: fix remap_file_pages() regression | Liam Howlett | 1 | -0/+3 |
| 2022-10-20 | mm/mmap: fix MAP_FIXED address return on VMA merge | Liam Howlett | 1 | -8/+7 |
| 2022-10-20 | mm/mmap.c: __vma_adjust(): suppress uninitialized var warning | Andrew Morton | 1 | -1/+2 |
| 2022-10-20 | mm/mmap: undo ->mmap() when mas_preallocate() fails | Mike Kravetz | 1 | -1/+1 |
| 2022-10-12 | mm/mmap: undo ->mmap() when arch_validate_flags() fails | Carlos Llamas | 1 | -1/+4 |
| 2022-10-12 | mm/mmap: preallocate maple nodes for brk vma expansion | Liam Howlett | 1 | -12/+6 |
| 2022-10-12 | mmap: fix copy_vma() failure path | Liam Howlett | 1 | -0/+5 |
| 2022-09-26 | mm: refactor of vma_merge() | Jakub Matěna | 1 | -50/+37 |
| 2022-09-26 | mm: delete unused MMF_OOM_VICTIM flag | Suren Baghdasaryan | 1 | -2/+1 |
| 2022-09-26 | mm: drop oom code from exit_mmap | Suren Baghdasaryan | 1 | -19/+11 |
| 2022-09-26 | mm/mmap.c: pass in mapping to __vma_link_file() | Liam R. Howlett | 1 | -17/+12 |
| 2022-09-26 | mm/mmap: drop range_has_overlap() function | Liam R. Howlett | 1 | -26/+1 |
| 2022-09-26 | mm: remove the vma linked list | Liam R. Howlett | 1 | -282/+187 |
| 2022-09-26 | userfaultfd: use maple tree iterator to iterate VMAs | Liam R. Howlett | 1 | -1/+1 |
| 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 | 1 | -83/+145 |
| 2022-09-26 | mm/mmap: move mmap_region() below do_munmap() | Liam R. Howlett | 1 | -245/+245 |
| 2022-09-26 | mm: remove vmacache | Liam R. Howlett | 1 | -29/+2 |
| 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 | 1 | -0/+29 |
| 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 | 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 | 1 | -395/+111 |
| 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) | 1 | -5/+5 |
| 2022-09-26 | mm: start tracking VMAs with maple tree | Liam R. Howlett | 1 | -33/+320 |
| 2022-09-11 | mm: align larger anonymous mappings on THP boundaries | Rik van Riel | 1 | -0/+3 |
| 2022-08-20 | mm/hugetlb: fix hugetlb not supporting softdirty tracking | David Hildenbrand | 1 | -2/+5 |
| 2022-07-29 | mm/mprotect: fix soft-dirty check in can_change_pte_writable() | Peter Xu | 1 | -1/+1 |
| 2022-07-29 | mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region | Miaohe Lin | 1 | -1/+0 |
| 2022-07-17 | mm/mmap: fix obsolete comment of find_extend_vma | Miaohe Lin | 1 | -1/+0 |
| 2022-07-17 | mm/mmap: drop ARCH_HAS_VM_GET_PAGE_PROT | Anshuman Khandual | 1 | -22/+0 |
| 2022-07-17 | mm/mmap: build protect protection_map[] with ARCH_HAS_VM_GET_PAGE_PROT | Anshuman Khandual | 1 | -4/+1 |
| 2022-07-17 | mm/mmap: define DECLARE_VM_GET_PAGE_PROT | Anshuman Khandual | 1 | -25/+1 |
| 2022-07-17 | mm/mmap: build protect protection_map[] with __P000 | Anshuman Khandual | 1 | -0/+2 |
| 2022-06-27 | docs: rename Documentation/vm to Documentation/mm | Mike Rapoport | 1 | -1/+1 |
| 2022-05-28 | Merge tag 'powerpc-5.19-1' of git://git.kernel.org/pub/scm/linux/kernel/git/p... | Linus Torvalds | 1 | -9/+26 |
| 2022-05-19 | mm: mmap: register suitable readonly file vmas for khugepaged | Yang Shi | 1 | -0/+7 |
| 2022-05-19 | mm: khugepaged: introduce khugepaged_enter_vma() helper | Yang Shi | 1 | -4/+4 |
| 2022-05-13 | mmap locking API: fix missed mmap_sem references in comments | Florian Rommel | 1 | -2/+2 |
| 2022-05-05 | mm: Add len and flags parameters to arch_get_mmap_end() | Christophe Leroy | 1 | -2/+2 |
| 2022-05-05 | mm, hugetlbfs: Allow an arch to always use generic versions of get_unmapped_a... | Christophe Leroy | 1 | -7/+24 |
| 2022-04-28 | mm/mmap: drop arch_vm_get_page_pgprot() | Anshuman Khandual | 1 | -3/+1 |
| 2022-04-28 | mm/mmap: drop arch_filter_pgprot() | Anshuman Khandual | 1 | -11/+2 |
| 2022-04-28 | mm/mmap: add new config ARCH_HAS_VM_GET_PAGE_PROT | Anshuman Khandual | 1 | -0/+2 |
| 2022-04-28 | mm/mmap.c: use helper mlock_future_check() | Miaohe Lin | 1 | -9/+2 |
| 2022-04-28 | mm/mmap: clarify protection_map[] indices | Anshuman Khandual | 1 | -2/+16 |
| 2022-04-28 | mm/mmap.c: use mmap_assert_write_locked() instead of open coding it | Rolf Eike Beer | 1 | -2/+2 |
| 2022-04-21 | mm, hugetlb: allow for "high" userspace addresses | Christophe Leroy | 1 | -8/+0 |
| 2022-03-22 | Merge tag 'folio-5.18c' of git://git.infradead.org/users/willy/pagecache | Linus Torvalds | 1 | -30/+2 |
| 2022-03-22 | mm/mmap: remove obsolete comment in ksys_mmap_pgoff | Miaohe Lin | 1 | -2/+0 |
| 2022-03-22 | mm: _install_special_mapping() apply VM_LOCKED_CLEAR_MASK | Hugh Dickins | 1 | -0/+1 |
| 2022-03-22 | mm/mmap: return 1 from stack_guard_gap __setup() handler | Randy Dunlap | 1 | -1/+1 |
| 2022-03-05 | mm: refactor vm_area_struct::anon_vma_name usage code | Suren Baghdasaryan | 1 | -6/+6 |
| 2022-02-26 | mm: fix use-after-free bug when mm->mmap is reused after being freed | Suren Baghdasaryan | 1 | -0/+1 |
| 2022-02-17 | mm/munlock: delete munlock_vma_pages_all(), allow oomreap | Hugh Dickins | 1 | -30/+2 |
| 2022-01-17 | Merge branch 'signal-for-v5.17' of git://git.kernel.org/pub/scm/linux/kernel/... | Linus Torvalds | 1 | -1/+0 |
| 2022-01-15 | mm: protect free_pgtables with mmap_lock write lock in exit_mmap | Suren Baghdasaryan | 1 | -8/+8 |
| 2022-01-15 | mm: move anon_vma declarations to linux/mm_inline.h | Arnd Bergmann | 1 | -0/+1 |
| 2022-01-15 | mm: add a field to store names for private anonymous memory | Colin Cross | 1 | -16/+22 |
| 2022-01-08 | exit: Remove profile_task_exit & profile_munmap | Eric W. Biederman | 1 | -1/+0 |
| 2021-11-09 | mm,hugetlb: remove mlock ulimit for SHM_HUGETLB | zhangyiru | 1 | -2/+1 |
| 2021-11-06 | mm/mmap.c: fix a data race of mm->total_vm | Peng Liu | 1 | -1/+1 |
| 2021-09-04 | Merge tag 'denywrite-for-5.15' of git://github.com/davidhildenbrand/linux | Linus Torvalds | 1 | -26/+3 |
| 2021-09-03 | Merge branch 'akpm' (patches from Andrew) | Linus Torvalds | 1 | -4/+3 |
| 2021-09-03 | remap_file_pages: Use vma_lookup() instead of find_vma() | Liam R. Howlett | 1 | -4/+1 |
| 2021-09-03 | mm/pagemap: add mmap_assert_locked() annotations to find_vma*() | Luigi Rizzo | 1 | -0/+2 |
| 2021-09-03 | mm: ignore MAP_DENYWRITE in ksys_mmap_pgoff() | David Hildenbrand | 1 | -2/+0 |
| 2021-09-03 | mm: remove VM_DENYWRITE | David Hildenbrand | 1 | -24/+3 |
| 2021-08-23 | fs: remove mandatory file locking support | Jeff Layton | 1 | -6/+0 |
| 2021-07-08 | mmap: make mlock_future_check() global | Mike Rapoport | 1 | -3/+2 |
| 2021-06-29 | Merge branch 'akpm' (patches from Andrew) | Linus Torvalds | 1 | -30/+24 |
| 2021-06-29 | mm/mmap: use find_vma_intersection() in do_mmap() for overlap | Liam Howlett | 1 | -3/+1 |
| 2021-06-29 | mm/mmap: introduce unlock_range() for code cleanup | Liam Howlett | 1 | -19/+20 |
| 2021-06-29 | mm/mmap.c: logic of find_vma_intersection repeated in __do_munmap | Gonzalo Matias Juarez Tello | 1 | -7/+2 |
| 2021-06-29 | mm: ignore MAP_EXECUTABLE in ksys_mmap_pgoff() | David Hildenbrand | 1 | -1/+1 |
| 2021-06-28 | Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebi... | Linus Torvalds | 1 | -2/+2 |
| 2021-05-07 | mm: fix typos in comments | Ingo Molnar | 1 | -2/+2 |
| 2021-05-05 | mm/mmap.c: don't unlock VMAs in remap_file_pages() | Liam Howlett | 1 | -17/+1 |
| 2021-04-30 | Reimplement RLIMIT_MEMLOCK on top of ucounts | Alexey Gladkov | 1 | -2/+2 |
| 2021-04-30 | Revert "mremap: don't allow MREMAP_DONTUNMAP on special_mappings and aio" | Brian Geffon | 1 | -5/+1 |
| 2021-03-26 | arm64: Support execute-only permissions with Enhanced PAN | Vladimir Murzin | 1 | -0/+6 |
| 2021-02-24 | mm/mmap.c: remove unnecessary local variable | Adrian Huang | 1 | -3/+1 |
| 2021-01-29 | tlb: mmu_gather: Remove start/end arguments from tlb_gather_mmu() | Will Deacon | 1 | -1/+1 |
| 2021-01-29 | tlb: mmu_gather: Introduce tlb_gather_mmu_fullmm() | Will Deacon | 1 | -1/+1 |
| 2021-01-29 | tlb: mmu_gather: Remove unused start/end arguments from tlb_finish_mmu() | Will Deacon | 1 | -2/+2 |
| 2020-12-18 | Merge tag 'drm-next-2020-12-18' of git://anongit.freedesktop.org/drm/drm | Linus Torvalds | 1 | -1/+1 |
| 2020-12-15 | mm: forbid splitting special mappings | Dmitry Safonov | 1 | -0/+12 |
| 2020-12-15 | vm_ops: rename .split() callback to .may_split() | Dmitry Safonov | 1 | -2/+2 |
| 2020-12-15 | mremap: don't allow MREMAP_DONTUNMAP on special_mappings and aio | Dmitry Safonov | 1 | -1/+5 |
| 2020-12-15 | Merge tag 'drm-misc-next-2020-11-27-1' of git://anongit.freedesktop.org/drm/d... | Daniel Vetter | 1 | -1/+1 |
| 2020-12-06 | mm/mmap.c: fix mmap return value when vma is merged after call_mmap() | Liu Zixian | 1 | -14/+12 |
| 2020-11-19 | mm: mmap: fix fput in error path v2 | Christian König | 1 | -1/+1 |
| 2020-11-05 | Revert "mm: mmap: fix fput in error path v2" | Christian König | 1 | -1/+1 |
| 2020-11-05 | Revert "mm: introduce vma_set_file function v4" | Christian König | 1 | -12/+0 |
| 2020-11-05 | mm: introduce vma_set_file function v4 | Christian König | 1 | -0/+12 |
| 2020-11-05 | mm: mmap: fix fput in error path v2 | Christian König | 1 | -1/+1 |
| 2020-10-18 | mm/mmap: add inline munmap_vma_range() for code readability | Liam R. Howlett | 1 | -15/+33 |
| 2020-10-18 | mm/mmap: add inline vma_next() for readability of mmap code | Liam R. Howlett | 1 | -6/+20 |
| 2020-10-16 | mm: remove the now-unnecessary mmget_still_valid() hack | Jann Horn | 1 | -4/+1 |
| 2020-10-16 | mm: use helper function put_write_access() | Miaohe Lin | 1 | -1/+1 |
| 2020-10-13 | mm/mmap.c: replace do_brk with do_brk_flags in comment of insert_vm_struct() | Liao Pingfang | 1 | -1/+1 |
| 2020-10-13 | mm/mmap.c: use helper function allow_write_access() in __remove_shared_vm_str... | Miaohe Lin | 1 | -1/+1 |
| 2020-10-13 | mm: use helper function mapping_allow_writable() | Miaohe Lin | 1 | -1/+1 |
| 2020-10-13 | mm/mmap: check on file instead of the rb_root_cached of its address_space | Wei Yang | 1 | -3/+3 |
| 2020-10-13 | mm/mmap: not necessary to check mapping separately | Wei Yang | 1 | -2/+1 |
| 2020-10-13 | mm/mmap: leave adjust_next as virtual address instead of page frame number | Wei Yang | 1 | -4/+4 |
| 2020-10-13 | mm/mmap: leverage vma_rb_erase_ignore() to implement vma_rb_erase() | Wei Yang | 1 | -9/+7 |
| 2020-10-13 | mm/mmap: rename __vma_unlink_common() to __vma_unlink() | Wei Yang | 1 | -3/+3 |
| 2020-10-13 | Merge tag 'block-5.10-2020-10-12' of git://git.kernel.dk/linux-block | Linus Torvalds | 1 | -1/+1 |
| 2020-10-12 | Merge tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/a... | Linus Torvalds | 1 | -0/+9 |
| 2020-10-11 | mm: mmap: Fix general protection fault in unlink_file_vma() | Miaohe Lin | 1 | -1/+5 |
| 2020-09-24 | bdi: replace BDI_CAP_NO_{WRITEBACK,ACCT_DIRTY} with a single flag | Christoph Hellwig | 1 | -1/+1 |
| 2020-09-04 | mm: Introduce arch_validate_flags() | Catalin Marinas | 1 | -0/+9 |
| 2020-08-07 | mm: remove unnecessary wrapper function do_mmap_pgoff() | Peter Collingbourne | 1 | -8/+8 |
| 2020-08-07 | mm: mmap: merge vma after call_mmap() if possible | Miaohe Lin | 1 | -1/+21 |
| 2020-08-07 | mm/mmap: optimize a branch judgment in ksys_mmap_pgoff() | Zhen Lei | 1 | -3/+4 |
| 2020-07-31 | Merge branch 'for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/pau...core-rcu-2020-08-03 | Ingo Molnar | 1 | -0/+1 |
| 2020-07-24 | mm/mmap.c: close race between munmap() and expand_upwards()/downwards() | Kirill A. Shutemov | 1 | -2/+14 |
| 2020-06-29 | mm/mmap.c: Add cond_resched() for exit_mmap() CPU stalls | Paul E. McKenney | 1 | -0/+1 |
| 2020-06-09 | mmap locking API: convert mmap_sem comments | Michel Lespinasse | 1 | -18/+18 |
| 2020-06-09 | mmap locking API: convert mmap_sem API comments | Michel Lespinasse | 1 | -1/+1 |
| 2020-06-09 | mmap locking API: rename mmap_sem to mmap_lock | Michel Lespinasse | 1 | -2/+2 |
| 2020-06-09 | mmap locking API: use coccinelle to convert mmap_sem rwsem call sites | Michel Lespinasse | 1 | -16/+16 |
| 2020-06-04 | mm: mmap: fix a typo in comment "compatbility"->"compatibility" | Ethon Paul | 1 | -1/+1 |
| 2020-04-10 | mm/vma: introduce VM_ACCESS_FLAGS | Anshuman Khandual | 1 | -1/+1 |
| 2020-04-10 | mm/mmap.c: initialize align_offset explicitly for vm_unmapped_area | Jaewon Kim | 1 | -0/+2 |
| 2020-04-07 | mm: use fallthrough; | Joe Perches | 1 | -3/+2 |
| 2020-04-07 | mm/vma: make vma_is_accessible() available for general use | Anshuman Khandual | 1 | -3/+2 |
| 2020-04-02 | mm: mmap: add trace point of vm_unmapped_area | Jaewon Kim | 1 | -2/+10 |
| 2020-04-02 | mmap: remove inline of vm_unmapped_area | Jaewon Kim | 1 | -2/+18 |
| 2020-02-20 | mm: Avoid creating virtual address aliases in brk()/mmap()/mremap() | Catalin Marinas | 1 | -4/+0 |
| 2020-01-31 | mm/mmap.c: get rid of odd jump labels in find_mergeable_anon_vma() | Miaohe Lin | 1 | -20/+16 |
| 2020-01-27 | Merge tag 'timers-core-2020-01-27' of git://git.kernel.org/pub/scm/linux/kern... | Linus Torvalds | 1 | -0/+2 |
| 2020-01-14 | x86/vdso: Handle faults on timens page | Dmitry Safonov | 1 | -0/+2 |
| 2020-01-06 | arm64: Revert support for execute-only user mappings | Catalin Marinas | 1 | -6/+0 |
| 2019-12-01 | mm/mmap.c: make vma_merge() comment more easy to understand | Wei Yang | 1 | -9/+12 |
| 2019-12-01 | mm/mmap.c: use IS_ERR_VALUE to check return value of get_unmapped_area | Gaowei Pu | 1 | -4/+5 |
| 2019-12-01 | mm/mmap.c: rb_parent is not necessary in __vma_link_list() | Wei Yang | 1 | -1/+1 |
| 2019-12-01 | mm/mmap.c: extract __vma_unlink_list() as counterpart for __vma_link_list() | Wei Yang | 1 | -11/+1 |
| 2019-12-01 | mm/mmap.c: __vma_unlink_prev() is not necessary now | Wei Yang | 1 | -8/+1 |
| 2019-12-01 | mm/mmap.c: prev could be retrieved from vma->vm_prev | Wei Yang | 1 | -13/+7 |
| 2019-12-01 | mm/mmap.c: remove a never-triggered warning in __vma_adjust() | Wei Yang | 1 | -2/+0 |
| 2019-09-25 | mm: untag user pointers in mmap/munmap/mremap/brk | Catalin Marinas | 1 | -0/+5 |
| 2019-09-25 | augmented rbtree: add new RB_DECLARE_CALLBACKS_MAX macro | Michel Lespinasse | 1 | -11/+18 |
| 2019-09-24 | mm: mmap: increase sockets maximum memory size pgoff for 32bits | Ivan Khoronzhuk | 1 | -0/+3 |
| 2019-09-24 | mm/mmap.c: refine find_vma_prev() with rb_last() | Wei Yang | 1 | -6/+3 |
| 2019-08-20 | vfs: don't allow writes to swap files | Darrick J. Wong | 1 | -2/+6 |
| 2019-05-21 | treewide: Add SPDX license identifier for missed files | Thomas Gleixner | 1 | -0/+1 |
| 2019-05-09 | x86/mpx, mm/core: Fix recursive munmap() corruption | Dave Hansen | 1 | -7/+8 |
| 2019-04-19 | coredump: fix race condition between mmget_not_zero()/get_task_mm() and core ... | Andrea Arcangeli | 1 | -1/+6 |
| 2019-03-05 | mm: fix some typos in mm directory | Wei Yang | 1 | -4/+4 |
| 2019-03-05 | mm/mmap.c: remove some redundancy in arch_get_unmapped_area_topdown() | Yang Fan | 1 | -4/+3 |
| 2019-02-27 | mm: enforce min addr even if capable() in expand_downwards() | Jann Horn | 1 | -4/+3 |
| 2018-12-28 | mm/mmap.c: remove verify_mm_writelocked() | Yangtao Li | 1 | -16/+0 |
| 2018-12-10 | mm: mmap: Allow for "high" userspace addresses | Steve Capper | 1 | -7/+18 |
| 2018-10-26 | mm: brk: downgrade mmap_sem to read when shrinking | Yang Shi | 1 | -11/+35 |
| 2018-10-26 | mm: mremap: downgrade mmap_sem to read when shrinking | Yang Shi | 1 | -2/+2 |
| 2018-10-26 | mm: unmap VM_PFNMAP mappings with optimized path | Yang Shi | 1 | -9/+0 |
| 2018-10-26 | mm: unmap VM_HUGETLB mappings with optimized path | Yang Shi | 1 | -1/+1 |
| 2018-10-26 | mm: mmap: zap pages with read mmap_sem in munmap | Yang Shi | 1 | -11/+48 |
| 2018-10-13 | mm/mmap.c: don't clobber partially overlapping VMA with MAP_FIXED_NOREPLACE | Jann Horn | 1 | -1/+1 |
| 2018-08-22 | mm, oom: remove oom_lock from oom_reaper | Michal Hocko | 1 | -2/+0 |
| 2018-08-22 | mm, oom: distinguish blockable mode for mmu notifiers | Michal Hocko | 1 | -1/+1 |
| 2018-08-17 | dax: remove VM_MIXEDMAP for fsdax and device dax | Dave Jiang | 1 | -4/+5 |
| 2018-07-26 | mm: fix vma_is_anonymous() false-positives | Kirill A. Shutemov | 1 | -0/+3 |
| 2018-07-21 | mm: make vm_area_alloc() initialize core fields | Linus Torvalds | 1 | -9/+3 |
| 2018-07-21 | mm: make vm_area_dup() actually copy the old vma data | Linus Torvalds | 1 | -7/+0 |
| 2018-07-21 | mm: use helper functions for allocating and freeing vm_area structs | Linus Torvalds | 1 | -11/+11 |
| 2018-07-14 | mm: do not bug_on on incorrect length in __mm_populate() | Michal Hocko | 1 | -17/+12 |
| 2018-06-07 | mm: change return type to vm_fault_t | Souptick Joarder | 1 | -2/+2 |
| 2018-06-04 | Merge tag 'docs-4.18' of git://git.lwn.net/linux | Linus Torvalds | 1 | -1/+1 |
| 2018-05-19 | mmap: relax file size limit for regular files | Linus Torvalds | 1 | -1/+1 |
| 2018-05-11 | Merge branch 'akpm' (patches from Andrew) | Linus Torvalds | 1 | -18/+26 |
| 2018-05-11 | mm, oom: fix concurrent munlock and oom reaper unmap, v3 | David Rientjes | 1 | -18/+26 |
| 2018-05-11 | mmap: introduce sane default mmap limits | Linus Torvalds | 1 | -0/+32 |
| 2018-04-25 | x86/pti: Filter at vma->vm_page_prot population | Dave Hansen | 1 | -1/+10 |
| 2018-04-16 | Merge branch 'mm-rst' into docs-next | Jonathan Corbet | 1 | -1/+1 |
| 2018-04-16 | docs/vm: rename documentation files to .rst | Mike Rapoport | 1 | -1/+1 |
| 2018-04-11 | mm: introduce MAP_FIXED_NOREPLACE | Michal Hocko | 1 | -0/+11 |
| 2018-04-05 | mm: always print RLIMIT_DATA warning | David Woodhouse | 1 | -6/+8 |
| 2018-04-02 | mm: add ksys_mmap_pgoff() helper; remove in-kernel calls to sys_mmap_pgoff() | Dominik Brodowski | 1 | -5/+12 |
| 2017-12-14 | mm, oom_reaper: fix memory corruption | Michal Hocko | 1 | -5/+5 |