summaryrefslogtreecommitdiff
path: root/sys/arch/vax
AgeCommit message (Collapse)Author
2001-11-30Now that pmaps can have vm_page_md, make pmap_physseg optional.Artur Grabowski
2001-11-28more typedef zapping vm_page_t -> struct vm_page *Artur Grabowski
2001-11-28zap some typedefs.Artur Grabowski
vm_map_t -> struct vm_map * vm_map_entry_t -> struct vm_map_entry * simple_lock_data_t -> struct simplelock (uvm not done yet, coming in the next commit)
2001-11-28Make pmap_update functions into nops so that we can have a consistentArtur Grabowski
pmap_update API (right now it's nop).
2001-11-28make pmap_virtual_space madatory in all pmaps.Artur Grabowski
2001-11-28pmap_kenter_pgs is not used and not really useful. remove.Artur Grabowski
2001-11-28Sync in more uvm changes from NetBSD.Artur Grabowski
This time we're getting rid of KERN_* and VM_PAGER_* error codes and use errnos instead.
2001-11-24Harmonize boot() logic across arches:Miod Vallat
- ensure RB_DUMP | RB_HALT will cause a dump - or RB_HALT if (cold) While there, honor RB_TIMEBAD on sparc64.
2001-11-17Pick up changes made in NetBSD to work with ubc.Hugh Graham
Unbreaks art's mergings on vax.
2001-11-14Don't yell about clock drift for ridiculous (less than 48 hours) deltas.Miod Vallat
hugh@ ok
2001-11-14Change Vax LDPGSZ to 4k.Hugh Graham
2001-11-14Compat layer for 1k Vax aout, from NetBSD.Hugh Graham
2001-11-09nswbuf hasn't been used for ages. gc.Artur Grabowski
2001-11-07Add an alignment argument to uvm_map that specifies an alignment hintArtur Grabowski
for the virtual address.
2001-11-06Update and unbreak cpu_fork() - from NetBSD.Miod Vallat
2001-11-06Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.Miod Vallat
(Look ma, I might have broken the tree)
2001-11-06Let fork1, uvm_fork, and cpu_fork take a function/argument pair as argument,Artur Grabowski
instead of doing fork1, cpu_set_kpc. This lets us retire cpu_set_kpc and avoid a multiprocessor race. This commit breaks vax because it doesn't look like any other arch, someone working on vax might want to look at this and try to adapt the code to be more like the rest of the world. Idea and uvm parts from NetBSD.
2001-11-06remove the last uses of vm/vm_page.hArtur Grabowski
2001-11-01Change d_mmap in struct cdevsw from:Artur Grabowski
int (*d_mmap) __P((dev_t, int, int)); to: paddr_t (*d_mmap) __P((dev_t, off_t, int)); This allows us to mmap devices past 4GB offsets.
2001-10-31Add boardtype 1301.Hugh Graham
2001-10-10gc SWAPPAGER and DEVPAGER optionsTodd C. Miller
2001-10-06Remove MSDOSFS support from the ramdisk.Miod Vallat
2001-10-04UKC on vax.Miod Vallat
2001-10-01There are anecdotal reports of firmware being writable on some CougarHugh Graham
machines, so don't poke blindly into the middle of its address space if we can tell dz is not going to be there by other means.
2001-10-01consistent casingHugh Graham
2001-10-01Use system variant types rather than 0x80 on the configuration andHugh Graham
test register to tell VAXstation 4000/60 from MicroVAX 3100m80. This seems to produce more reliable results (should work for both Norm's and Solar's 3100m80's).
2001-10-01Add system variant types for VAXstation 4000/60 and MicroVAX 3100m80.Hugh Graham
2001-09-29The "swap generic" configuration needs only two entries in swdevt[].Miod Vallat
So shrink it when necessary, and remove unwanted stuff as well.
2001-09-28move cdev_decl(pf) into it's proper place, kill cdev_decl(ipl) at the same timeMichael Shalayeff
2001-09-22Remove more old, dusty, unused defines.Miod Vallat
2001-09-21phys_map declaration comes from <vm/vm.h>, no need to declare it locally.Miod Vallat
2001-09-20occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok
2001-09-19merge vm/vm_kern.h into uvm/uvm_extern.h; art@ okMichael Shalayeff
2001-09-16Make use of "export", "struct" and "member" keywords to be easier to readMiod Vallat
and simpler.
2001-09-14Simplify what should be userret, but is inlined instead.Artur Grabowski
2001-09-12mbutl no moreArtur Grabowski
2001-09-11Don't include <vm/vm_kern.h> if you don't need foo_map.Miod Vallat
2001-09-10Change askname to volatile; this prevents it from being trashed byBrandon Creighton
the setjmp/longjmp hack in place for VAX_BTYP_4[689]. This solves the /boot problem which prevented automatic boots from happening when the timer ran down.
2001-08-26The lkkbd and lkms drivers are causing problems on several machines,Hugh Graham
so inhibit their attachment for the time being.
2001-08-26Attempt to use the configuration and test register to tell aHugh Graham
VS4000 60 KA46 from a MV 3100/80 KA47. Apparently does not work on all 3100/80's, but better than nothing.
2001-08-25Playing with string.Hugh Graham
2001-08-25Bring in some useful stuff from NetBSD. Mostly work by Matt Thomas,Hugh Graham
and concerned with intvec counting. Also some ANSIfication.
2001-08-23Sync with contents of arch/foo/conf directory, might be useful one day.Miod Vallat
2001-08-23We can now move timeout_init into main().Artur Grabowski
2001-08-23Remove even more old timeout tentacles.Artur Grabowski
2001-08-21Art says it's ok for pmap_enter to effect no mapping change,Hugh Graham
so just return success if this happens.
2001-08-19The end of old timeouts is near...Miod Vallat
2001-08-18Move pmap_{de,}activate to vm/pmap.h, it's same on all archs.Artur Grabowski
2001-08-18We don't provide COMPAT_1[234] options anymore.Miod Vallat
2001-08-12#(endif|else) foo is incorrect, make it #endif /* foo */Heikki Korpela
deraadt@ ok