aboutsummaryrefslogtreecommitdiff
path: root/mm/mmap.c
AgeCommit message (Expand)AuthorFilesLines
2012-06-01Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-48/+6
2012-06-01unexport do_munmap()Gravatar Al Viro 1-1/+0
2012-06-01new helper: vm_mmap_pgoff()Gravatar Al Viro 1-29/+1
2012-06-01kill do_mmap() completelyGravatar Al Viro 1-11/+5
2012-06-01switch aio and shm to do_mmap_pgoff(), make do_mmap() staticGravatar Al Viro 1-2/+2
2012-06-01move security_mmap_addr() to saner placeGravatar Al Viro 1-14/+3
2012-06-01take security_mmap_file() outside of ->mmap_semGravatar Al Viro 1-11/+12
2012-05-31split ->file_mmap() into ->mmap_addr()/->mmap_file()Gravatar Al Viro 1-4/+8
2012-05-30unexport do_mmap()Gravatar Al Viro 1-1/+0
2012-05-29mm/mmap.c: find_vma(): remove unnecessary if(mm) checkGravatar Rajman Mekaco 1-26/+27
2012-05-24Merge branch 'perf-uprobes-for-linus' of git://git.kernel.org/pub/scm/linux/k...Gravatar Linus Torvalds 1-1/+32
2012-05-14Merge branch 'perf/uprobes' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Ingo Molnar 1-9/+50
2012-05-06vm: remove 'nr_accounted' calculations from the unmap_vmas() interfacesGravatar Linus Torvalds 1-6/+12
2012-05-06vm: simplify unmap_vmas() calling conventionGravatar Linus Torvalds 1-2/+2
2012-04-21kill mm argument of vm_munmap()Gravatar Al Viro 1-2/+3
2012-04-20VM: add "vm_mmap()" helper functionGravatar Linus Torvalds 1-2/+27
2012-04-20VM: add "vm_munmap()" helper functionGravatar Linus Torvalds 1-6/+9
2012-04-20VM: add "vm_brk()" helper functionGravatar Linus Torvalds 1-2/+14
2012-04-14uprobes/core: Decrement uprobe count before the pages are unmappedGravatar Srikar Dronamraju 1-4/+4
2012-04-14Merge branch 'perf/core' into perf/uprobesGravatar Ingo Molnar 1-32/+58
2012-03-31uprobes/core: Optimize probe hits with the help of a counterGravatar Srikar Dronamraju 1-1/+9
2012-03-22Merge branch 'akpm' (Andrew's patch-bomb)Gravatar Linus Torvalds 1-24/+27
2012-03-21mmap.c: fix comment for __insert_vm_struct()Gravatar Kautuk Consul 1-3/+2
2012-03-21hugetlbfs: fix alignment of huge page requestsGravatar Steven Truelove 1-3/+3
2012-03-21mm: search from free_area_cache for the bigger sizeGravatar Xiao Guangrong 1-15/+21
2012-03-21mm: do not reset cached_hole_size when vma is unmappedGravatar Xiao Guangrong 1-3/+1
2012-03-21Merge branch 'vm' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsGravatar Linus Torvalds 1-3/+2
2012-03-21Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/...Gravatar Linus Torvalds 1-2/+15
2012-03-20VM: make unmap_vmas() return voidGravatar Al Viro 1-2/+1
2012-03-20VM: don't bother with feeding upper limit to tlb_finish_mmu() in exit_mmap()Gravatar Al Viro 1-1/+1
2012-03-06mm: fix find_vma_prevGravatar Mikulas Patocka 1-2/+10
2012-03-06mmap: EINVAL not ENOMEM when rejecting VM_GROWSGravatar Hugh Dickins 1-1/+2
2012-03-05VM_GROWS{UP,DOWN} shouldn't be set on shmem VMAsGravatar Al Viro 1-0/+2
2012-02-17uprobes/core: Clean up, refactor and improve the codeGravatar Ingo Molnar 1-6/+6
2012-02-17uprobes, mm, x86: Add the ability to install and remove uprobes breakpointsGravatar Srikar Dronamraju 1-0/+23
2012-02-14security: trim security.hGravatar Al Viro 1-0/+13
2012-02-14mm: collapse security_vm_enough_memory() variants into a single functionGravatar Al Viro 1-2/+2
2012-01-10mm: simplify find_vma_prev()Gravatar KOSAKI Motohiro 1-28/+8
2012-01-10mremap: enforce rmap src/dst vma ordering in case of vma_merge() succeeding i...Gravatar Andrea Arcangeli 1-3/+21
2011-11-06Merge branch 'modsplit-Oct31_2011' of git://git.kernel.org/pub/scm/linux/kern...Gravatar Linus Torvalds 1-1/+1
2011-10-31mm/mmap.c: eliminate the ret variable from mm_take_all_locks()Gravatar Kautuk Consul 1-6/+3
2011-10-31mm: Map most files to use export.h instead of module.hGravatar Paul Gortmaker 1-1/+1
2011-07-25mmap: fix and tidy up overcommit page arithmeticGravatar Dmitry Fink 1-21/+13
2011-06-16mm: get rid of the most spurious find_vma_prev() usersGravatar Linus Torvalds 1-9/+3
2011-05-26mm: don't access vm_flags as 'int'Gravatar KOSAKI Motohiro 1-4/+4
2011-05-25mm: convert anon_vma->lock to a mutexGravatar Peter Zijlstra 1-5/+5
2011-05-25mm: Convert i_mmap_lock to a mutexGravatar Peter Zijlstra 1-11/+11
2011-05-25mm: Remove i_mmap_lock lockbreakGravatar Peter Zijlstra 1-12/+1
2011-05-25mm: mmu_gather reworkGravatar Peter Zijlstra 1-9/+9
2011-05-25mm: make expand_downwards() symmetrical with expand_upwards()Gravatar Michal Hocko 1-6/+1