summaryrefslogtreecommitdiff
path: root/sys/vm
AgeCommit message (Collapse)Author
1999-10-11permit builds with NFSSERVER, without NFSCLIENT; cmetzTheo de Raadt
1999-09-03Change the pmap_enter api to pass down an argument that indicatesArtur Grabowski
the access type that caused this mapping. This is to simplify pmaps with mod/ref emulation (none for the moment) and in some cases speed up pmap_is_{referenced,modified}. At the same time, clean up some mappings that had too high protection. XXX - the access type is incorrect in old vm, it's only used by uvm and MD code. The actual use of this in pmap_enter implementations is not in this commit.
1999-08-23vm_offset_t -> {v,p}addr_t, vm_size_t -> {v,p}size_tArtur Grabowski
1999-08-23vm_offset_t -> {v,p}addr_t + some other cleanupArtur Grabowski
1999-08-18some ifndef UVMArtur Grabowski
1999-08-17typoNiklas Hallqvist
1999-08-17New cpu_fork API to take a stack in which you point the child's stackpointerNiklas Hallqvist
to, at the bottom or the top, depending on your architecture's stack growth direction. This is in preparation for Linux' clone(2) emulation. port maintainers, please check that I did the work right.
1999-07-18pmap_activate() and pmap_deactivate() are MDTheo de Raadt
1999-07-09vm_offset_t -> {v,p}addr_t and vm_size_t -> {v,p}size_tArtur Grabowski
1999-07-06use NFSSERVER || NFSCLIENT instead of NFSTheo de Raadt
1999-06-29remove vm_inherit_t casts, not really needed; millert@Aaron Campbell
1999-06-23Improved sysv shared memory. Works with UVM.Artur Grabowski
Original work done in FreeBSD, but this code was ported from NetBSD by Chuck Cranor.
1999-06-01remove the "ifdef pmap_resident_count" hack and replace it with a macro.Artur Grabowski
change some &vm->vm_pmap to vm->vm_map.pmap
1999-05-24quieter operation during initial mounting of primary swapTobias Weingartner
1999-05-22Add new vm_swap code for dynamic swap. From netbsd, munged some by me, andTobias Weingartner
others. syscall commit pending.
1999-02-26add some struct members that uvm usesArtur Grabowski
1999-02-19Allocate the u-area early in fork1 instead of in vm_fork.Artur Grabowski
Now we can return ENOMEM instead of doing a panic when we run out of memory.
1999-02-19make vm_page_alloc_contig() a std functionTheo de Raadt
1999-02-08typo in commentArtur Grabowski
1999-02-01More general conditional for mipsPer Fogelstrom
1999-01-10vm_map_deallocate: only release the simple lock when ref_count > 0. in the ↵Artur Grabowski
other case the simple lock is released in vm_map_lock_drain_*interlock*
1999-01-09Fix to a VM cache trash bug by Chuck CranorNiklas Hallqvist
1998-12-30indentArtur Grabowski
1998-12-30clean up DIAGNOSTICArtur Grabowski
1998-10-30fix !VM_PAGE_NOADD case which was incompilable.Michael Shalayeff
fix printf() strings so they won't spread all across the screen. kids tested, mother approved.
1998-09-11include pmap.h earlier, so MD pmap structures may beMichael Shalayeff
kept all together in the pmap.h file w/o spreading all over MD includes. verified on most architectures.
1998-07-28Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned ↵Todd C. Miller
(size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * as its 9th argument so change that and clean up uses of vn_rdwr(). Fixes 549 + more
1998-06-09a = a + b; --> a += b;Michael Shalayeff
correct printf in the vm_page_bootstrap()
1998-06-02const mlock(2) and munlock(2)Theo de Raadt
1998-05-11Do not allow mapping of immutable/append-only in a way that allows writing.Niklas Hallqvist
Information about the problem gathered from NetBSD, but solved in a different albeit similar way.
1998-04-25Fix my messup in the last commit, thanks mickeyNiklas Hallqvist
1998-04-25typoNiklas Hallqvist
1998-04-25typoNiklas Hallqvist
1998-03-30do not count proc0 faults (happens in amiga pmap_init)Niklas Hallqvist
1998-03-26correctly count ru_majflt. the fix pulled in from netbsd pr#1397 ischuck
incorrect. calling vm_pager_get() doesn't count as a "majflt" unless the pager returns VM_PAGER_OK. when walking an object chain we can get VM_PAGER_FAIL (indicating that the requested data does not reside in this object and we must continue to walk the chain) -- we don't want to count this as a majflt. i also added code to count ru_minflt.
1998-03-20Some cleanup of page stealsNiklas Hallqvist
1998-03-02Move some pmap_* protos out of PMAP_EXCLUDE_DECLS as sparc does not need/wantNiklas Hallqvist
them virtualized
1998-03-01Put back former pmap_steal_memory in non MNN case, at least i386 stillNiklas Hallqvist
needs it.
1998-03-01Merge of MACHINE_NEW_CONTIG (aka MNN) code from Chuck Cranor,Niklas Hallqvist
<chuck@openbsd.org>. This code is as of yet disabled on all platforms, actually not yet supported on more than mvme68k, although other platforms are expected soon, as code is already available. This code makes handling of multiple physical memory regions consistent over all platforms, as well as keeping the performance of maintaining a single continuous memory chunk. It is also a requirement for the upcoming UVM replacement VM system. What I did in this merge: just declared the pmap_map function in a MD include file per port that needs it. It's not an exported pmap interface, says Chuck. It ended up in differnt include files on differnet ports, as I tried to follow the current policy on a per-arch basis.
1998-02-25check for zerodev special case before kicking out all VCHR casesTheo de Raadt
1998-02-23KNFNiklas Hallqvist
1998-02-23KNFNiklas Hallqvist
1998-02-19Tighten up the mmapping of char devices even more. Do not allowNiklas Hallqvist
MAP_PRIVATE or MAP_COPY of them as it was incorrectly handled anyhow.
1998-02-18do not permit read+write mmap on a read-only device-based descriptor;Theo de Raadt
mostly from chuck@maria.wustl.edu
1998-02-06Maintain count of free pages. This bug triggered total hangs onNiklas Hallqvist
big buffer cache systems where the cache got split up between low and high memory
1998-02-03Fix the non-MACHINE_NONCONTIG case for Jason's fix.Todd C. Miller
1998-02-02Replay revisions 1.8 and 1.9.Jason Downs
1998-02-02The "fix" for running out of kernel maps, from FreeBSD. Integrated byJason Downs
myself a couple of weeks ago; reviewed and tested by a few people since then.
1997-12-12careful about redefining TRUE and FALSETheo de Raadt
1997-12-10Fix for chuck cranor's crashme program.Constantine Sapuntzakis