1. 27 7月, 2012 10 次提交
  2. 20 7月, 2012 1 次提交
  3. 05 6月, 2012 6 次提交
  4. 22 5月, 2012 2 次提交
  5. 17 5月, 2012 6 次提交
  6. 08 5月, 2012 8 次提交
  7. 23 4月, 2012 3 次提交
  8. 21 4月, 2012 1 次提交
    • L
      VM: add "vm_mmap()" helper function · 6be5ceb0
      Linus Torvalds 提交于
      This continues the theme started with vm_brk() and vm_munmap():
      vm_mmap() does the same thing as do_mmap(), but additionally does the
      required VM locking.
      
      This uninlines (and rewrites it to be clearer) do_mmap(), which sadly
      duplicates it in mm/mmap.c and mm/nommu.c.  But that way we don't have
      to export our internal do_mmap_pgoff() function.
      
      Some day we hopefully don't have to export do_mmap() either, if all
      modular users can become the simpler vm_mmap() instead.  We're actually
      very close to that already, with the notable exception of the (broken)
      use in i810, and a couple of stragglers in binfmt_elf.
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      6be5ceb0
  9. 12 4月, 2012 3 次提交