summaryrefslogtreecommitdiff
path: root/sys/arch/vax
AgeCommit message (Collapse)Author
2002-04-04permit maxusers down to 2Theo de Raadt
2002-04-04permit compiling without NFSTheo de Raadt
2002-03-31Copy mac address from proper place on 4000 200. Spotted thanks to aHugh Graham
failed boot log from Jim Uhl.
2002-03-23Add variables for config(8) -e time tweak of systemV shared memoryMarc Espie
parameters. Ok millert@, miod@, maja@
2002-03-15Cosmetic changes only, primarily making comments line up nicely after theTodd C. Miller
__P removal.
2002-03-14remove ambiguity in version,ostype,osversion,osrelease and their constanity, ↵Michael Shalayeff
they are and declarre 'em accordingly also removing private externies of those
2002-03-14Final __P removal plus some cosmetic fixupsTodd C. Miller
2002-03-14First round of __P removal in sysTodd C. Miller
2002-03-14Turn the ptrace(2) syscall into a kernel compile option, option PTRACE inMiod Vallat
your kernel configuration file. By default, GENERIC will enable this. When PTRACE is not enabled, several ptrace-like features of the procfs filesystem will be disabled as well (namely, the ability to read and write any process' registers, as well as attching, single stepping and detaching to/from processes). This should help paranoid people build better sandboxens, and us to build smaller ramdisks.
2002-03-10rdboot -> hdbootHugh Graham
2002-03-09Add case for BTYP_1305.Hugh Graham
2002-03-07Clean up BUS_DMA_* flags, and make sure all arch's define:Jason Wright
BUS_DMA_READ, BUS_DMA_WRITE, and BUS_DMA_STREAMING
2002-02-23switch vax to -O2, from hughTheo de Raadt
2002-02-17Patch from Daniel Lucq <daniel@lucq.org>Mats O Jansson
The patch allows you to change the value of NMBCLUSTERS, BUFCACHEPERCENT and NKMEMPAGES using the config command, instead of recompiling the kernel. This is the kernel part of the patch. I have compiled it on i386, sparc64, alpha and macppc. -moj ok art@ maja@
2002-02-15Don't cast nonexistent return value from splx to (void). ok art@Thomas Nordin
2002-02-14put "boot" in /usr/mdec instead of /Theo de Raadt
2002-02-13use strncpy instead of strcpy (no strcpy in libsa); hugh okTheo de Raadt
2002-02-11o add __weak_alias definition.Federico G. Schwindt
o empty definitions if !__GNUC__ miod@ testing and ok.
2002-01-31Make comment more representative.Hugh Graham
2002-01-31Make comment more representative.Hugh Graham
2002-01-31A little KNF.Hugh Graham
2002-01-31Add support for VAX 4000 500A.Hugh Graham
Thanks to kernel testing by Andrew Reynolds.
2002-01-25Bring disklabel code on par with other arches: recognize specific situations,Miod Vallat
correctly initialize the label for a virgin disk with no existing disklabel, etc.
2002-01-23copy*str() fixes for vax. Also includes some fixes from NetBSD PR #7838.Miod Vallat
2002-01-23compatability -> compatibility.Federico G. Schwindt
2002-01-23move mb_map allocation to mbinit()Artur Grabowski
2002-01-23move definition of mb_map from zillions of machdep.c to uipc_mbuf.cArtur Grabowski
2002-01-18Replace resource maps with extents.Miod Vallat
This one was tricky but the light came at 3am.
2002-01-18Replace resource maps with extents.Miod Vallat
This is completely untested due to lack of access to such hardware. cvs: ----------------------------------------------------------------------
2002-01-16Don't include <sys/map.h> when you don't need what's in it.Miod Vallat
2002-01-10Check result from malloc(9) when using M_NOWAIT. hugh@ okThomas Nordin
2002-01-03cdev_decl(wsdisplay) is already done in <sys/conf.h>Miod Vallat
2001-12-22Correct res count. Based on fix in NetBSD.Hugh Graham
2001-12-18Delay Debugger(). Noticed by NetBSD.Hugh Graham
2001-12-13Add major for uda to the bootdev table.Hugh Graham
2001-12-11Remove declarations that already exist in <sys/conf.h>Miod Vallat
2001-12-08Sprinkle pmap_update calls where relevant and some otherArtur Grabowski
misc pmap usage fixes.
2001-12-06No need to keep dummy fields in cpu_disklabel structures.Miod Vallat
2001-12-05VM_KMEM_SIZE no longer needed.Artur Grabowski
2001-12-05Enable MSCP disk support, since although untested due to lack ofHugh Graham
hardware, it's possible this is working...
2001-12-05sync with netbsd. untested.Hugh Graham
2001-12-05make nkmempages dynamic based on memory. okay art@ from netbsd:Niels Provos
date: 2000/02/11 19:22:52; author: thorpej; Add some very simple code to auto-size the kmem_map. We take the amount of physical memory, divide it by 4, and then allow machine dependent code to place upper and lower bounds on the size. Export the computed value to userspace via the new "vm.nkmempages" sysctl. NKMEMCLUSTERS is now deprecated and will generate an error if you attempt to use it. The new option, should you choose to use it, is called NKMEMPAGES, and two new options NKMEMPAGES_MIN and NKMEMPAGES_MAX allow the user to configure the bounds in the kernel config file.
2001-12-04Yet another sync to NetBSD uvm.Artur Grabowski
Today we add a pmap argument to pmap_update() and allocate map entries for kernel_map from kmem_map instead of using the static entries. This should get rid of MAX_KMAPENT panics. Also some uvm_loan problems are fixed.
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.