summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
AgeCommit message (Collapse)Author
2001-11-06Kill vm/vm_param.h, move it to uvm/uvm_param.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-28Handle RB_TIMEBAD in boot().Miod Vallat
2001-10-28Use the same pipeline flush instruction everywhere.Miod Vallat
2001-10-28Define kernel_pmap only if _KERNEL defined.Miod Vallat
2001-10-28Let 188-only kernels compile.Miod Vallat
2001-10-28I have nothing against stack checks at clock ints, as long as they areMiod Vallat
gramatically correct and only there if DEBUG is defined.
2001-10-28Prune more old stuffMiod Vallat
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-28cold is now staticly initialized.Miod Vallat
2001-09-28Variable declarations in .h files without extern keywords suck.Miod Vallat
Especially when not all of these variables are used.
2001-09-28Typos of the day.Miod Vallat
2001-09-28More cleaning, some style changes.Miod Vallat
2001-09-28"sys/foo.h" -> <sys/foo.h>Miod Vallat
2001-09-28move cdev_decl(pf) into it's proper place, kill cdev_decl(ipl) at the same timeMichael Shalayeff
2001-09-23Rename kdb_init() to db_machine_init().Miod Vallat
Fix prototypos for the early console routines. Use even more PMAP_NEW syntactic sugar. Remove some debugging stuff. Use symbolic values instead of magic numbers. Fix safepri value. Implement machdep.console_device sysctl.
2001-09-23Declare machdep.conssole_device sysctl.Miod Vallat
2001-09-23rename kdb_init() to db_machine_init().Miod Vallat
2001-09-23kernel_pmap -> pmap_kernel()Miod Vallat
2001-09-23Don't define _C_LABEL here.Miod Vallat
XXX this file should probably disappear. soon.
2001-09-23Don't redefine pmap_kernel() locally.Miod Vallat
2001-09-22Remove more old, dusty, unused defines.Miod Vallat
2001-09-21Don't protect useful macro definitions with #ifdef _LOCORE, as libc needsMiod Vallat
some of them.
2001-09-21phys_map declaration comes from <vm/vm.h>, no need to declare it locally.Miod Vallat
2001-09-21uvm_km_suballoc() will panic if it fails. No need to check the returnMiod Vallat
value.
2001-09-20occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok
2001-09-19Now is a good time to commit this cosmetic maxpartition-related change...Miod Vallat
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 userretArtur 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-08-31I should get more sleep.Miod Vallat
2001-08-31Assorted changes to really let non-DDB kernels (such as the future RAMDISK,Miod Vallat
hint, hint) compile.
2001-08-31Oops, finish removing variable.Miod Vallat
2001-08-31There's no point having a Debugger() clone here.Miod Vallat
2001-08-31Clean the DDB entry procedure for all console drivers, and honourMiod Vallat
db_console setting.
2001-08-30Let non ddb kernels compile.Miod Vallat
2001-08-26We can now compile kernels with -Werror.Miod Vallat
2001-08-26Add prototypes, fix compilation warnings, random style fixes.Miod Vallat
2001-08-26Add prototypes, fix compilation warnings, random style fixes.Miod Vallat
2001-08-24Adapt to trap() name change.Miod Vallat
Only compile compatibility with older mvme88k executables if COMPAT_25 is defined. This makes sense to me, at least...
2001-08-24Adapt to the <machine/asm.h> macros (only for entry points for now, becauseMiod Vallat
LABEL has disappeared), and to the trap() name changes.
2001-08-24Rename the trap() symbols with more insightful names. This forces usMiod Vallat
to check all trap() invocations in the sources and fix them, thus improving the chances of 197-kernels to live.
2001-08-24Define the usual <machine/asm.h> macros, for convenience of .S parts.Miod Vallat
2001-08-24Correct execution flow in m197_table_search().Miod Vallat
2001-08-24Grandma always told me, initialize your variables before you print theirMiod Vallat
values, you damn kid!
2001-08-24Get rid of a shupid define.Miod Vallat
2001-08-24Cleanup.Miod Vallat
2001-08-24Remove unused debugging code, fix uninitialized variables.Miod Vallat