Age | Commit message (Expand) | Author |
2015-05-07 | Pass a thread pointer instead of its file descriptor table to getvnode(9). | Martin Pieuchot |
2015-03-30 | Extend uvm_map_hint() to get an address range as extra arguments, and make | Miod Vallat |
2015-02-13 | Include sys/stdint.h for SIZE_MAX instead of relying on the misplaced | Todd C. Miller |
2015-02-07 | recombine some of the split uvm_mmap functions. the precondition checks | Ted Unangst |
2015-02-06 | -Split out uvm_mmap and uvm_map into a version for anon's and a version | Bob Beck |
2014-12-17 | Prefer MADV_* over POSIX_MADV_* in kernel for consistency: the latter | Philip Guenther |
2014-12-16 | primary change: move uvm_vnode out of vnode, keeping only a pointer. | Ted Unangst |
2014-12-15 | Use MAP_INHERIT_* for the 'inh' argument to the UMV_MAPFLAG() macro, | Philip Guenther |
2014-12-09 | Sprinkle in a little more mallocarray(). | Doug Hogan |
2014-11-16 | Replace a plethora of historical protection options with just | Theo de Raadt |
2014-10-03 | Introduce __MAP_NOFAULT, a mmap(2) flag that makes sure a mapping will not | Mark Kettenis |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-08 | bye bye UBC; ok beck dlg | Theo de Raadt |
2014-07-02 | Use real parameter types for u{dv,vn}_attach() instead of void * | Matthew Dempsky |
2014-06-27 | Cleanup support for legacy mmap flags | Matthew Dempsky |
2014-04-13 | compress code by turning four line comments into one line comments. | Ted Unangst |
2013-05-30 | remove lots of comments about locking per beck's request | Ted Unangst |
2013-05-30 | remove simple_locks from uvm code. ok beck deraadt | Ted Unangst |
2012-07-21 | Add a new mmap(2) flag __MAP_NOREMAP for use with MAP_FIXED to | Matthew Dempsky |
2012-04-22 | Add struct proc * argument to FRELE() and FILE_SET_MATURE() in | Philip Guenthe |
2012-04-10 | Return EINVAL on 0-byte mmap invocation. | Ariane van der Steldt |
2012-03-09 | New vmmap implementation. | Ariane van der Steldt |
2011-07-09 | More syscalls.master cleanup: | Matthew Dempsky |
2011-07-05 | msync has some code that is based on *old* bsd behaviour where | Owain Ainsworth |
2011-07-04 | move the specfs code to a place people can see it; ok guenther thib krw | Theo de Raadt |
2011-06-06 | Backout vmmap in order to repair virtual address selection algorithms | Ariane van der Steldt |
2011-05-24 | Reimplement uvm/uvm_map. | Ariane van der Steldt |
2010-12-24 | add a param to uvm_map_hint to not skip over the heap, and use it as a last | Ted Unangst |
2010-12-15 | add a BRKSIZ define and use it for the heap gap constant, decoupling | Ted Unangst |
2010-05-21 | Fix a locking problem in mincore where it was possible for us to sleep | Owain Ainsworth |
2009-07-25 | Add an extra argument to uvm_unmap_remove(), for the caller to tell it | Miod Vallat |
2009-07-22 | Put the PG_RELEASED changes diff back in. | Owain Ainsworth |
2009-07-09 | Remove the VREF() macro and replaces all instances with a call to verf(), | Thordur I. Bjornsson |
2009-06-17 | date based reversion of uvm to the 4th May. | Owain Ainsworth |
2009-06-16 | Backout all changes to uvm after pmemrange (which will be backed out | Owain Ainsworth |
2009-06-01 | Deal with wraparound when checking RLIMIT_DATA. | Todd C. Miller |
2009-06-01 | Since we've now cleared up a lot of the PG_RELEASED setting, remove the | Owain Ainsworth |
2009-03-20 | While working on some stuff in uvm I've gotten REALLY sick of reading | Owain Ainsworth |
2008-11-10 | vm_map_lock() around calls to uvm_map_findspace(); ok tedu | Theo de Raadt |
2007-09-01 | replace the machine dependant bytes-to-clicks macro by the MI ptoa() | Martin Reindl |
2007-06-18 | Bring back Mickey's UVM anon change. Testing by thib@, beck@ and | Pedro Martelletto |
2007-05-31 | zap the vm_amap am_l simplelock, and amap_{lock/unlock} macros for | Thordur I. Bjornsson |
2007-03-27 | Clean up some return value handling now that we know that what's returned | Artur Grabowski |
2007-03-26 | Rip out the KERN_ error codes. | Artur Grabowski |
2007-03-25 | remove KERN_SUCCESS and use 0 instead. | Artur Grabowski |
2007-02-25 | Make integer wrap checks the same for mmap, munmap, msync, etc | Todd C. Miller |
2006-07-13 | Back out the anon change. Apparently it was tested by a few, but most of | Theo de Raadt |
2006-06-29 | fallout from previous: remmapping anonymous memory did not account dsize prop... | Michael Shalayeff |
2006-06-21 | from netbsd: make anons dynamically allocated from pool. | Michael Shalayeff |
2006-04-06 | Fix a process datasize leak with MAP_FIXED. When zapping old mappings | Kurt Miller |