summaryrefslogtreecommitdiff
path: root/sys/arch/amiga
AgeCommit message (Collapse)Author
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-06redundant includes.Artur Grabowski
2001-11-06Kill vm/vm_param.h, move it to uvm/uvm_param.hArtur Grabowski
2001-11-05typo.Artur 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-18remove all com* on isa whatsoever.Janne Johansson
com_commulti-stuff broken.
2001-10-16Fix for bus_space_barrier which m68k doesn't need normally.Janne Johansson
From art@, same as Niklas@ suggested.
2001-10-10gc SWAPPAGER and DEVPAGER optionsTodd C. Miller
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-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-13Simplify userret.Artur Grabowski
2001-09-13old timeout removal, code by art@. (ok by miod)Janne Johansson
2001-09-13signed -> unsigned. From NetBSD via Todd Miller.Janne Johansson
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-06missing machine/ieee.h from NetBSDTodd C. Miller
2001-09-05make sure that va_start() has matching va_end()Theo de Raadt
2001-08-31The fact that my tree builds should not prevent the official tree toMiod Vallat
build as well... Right now, .s files can't include unmodified <machine/psl.h>
2001-08-30Remove duplicates with m68k/m68k/genassym.cfMiod Vallat
2001-08-30Invoke genassym.sh with both m68k/m68k/genassym.cf andMiod Vallat
machine/machine/genassym.cf files (poor man's inclusion).
2001-08-28Dont hardcode NKMEMCLUSTERS, calculate it to 256, as other m68ks do.Janne Johansson
2001-08-25One regdump to dump them all...Marc Espie
(moid@ wants that commit, because it interferes with stuff he's cleaning, and he's prepared to clean up stuff I may have forgotten, even though this was tested)
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-20Bring get[sd]fc() prototypes to <m68k/cpu.h>, this will be needed shortly.Miod Vallat
2001-08-20Convert to new timeouts; ite tested by jj@Miod Vallat
2001-08-19Typos in comments.Marc Espie
Remove `to be merged with le soon' since this is an obvious lie.
2001-08-18Move pmap_{de,}activate to vm/pmap.h, it's same on all archs.Artur Grabowski
2001-08-16TypoMiod Vallat
2001-08-15There is no need explaining how to do manually what libkvm does for you,Miod Vallat
and how the HP MMU works, on an arch which doesn't have this MMU.
2001-08-15There is no need to alter the MAX_KMAP and MAX_KMAPENT formulae forMiod Vallat
this port.
2001-08-13SYSPTSIZE is orhpaned, so g/c the poor define.Miod Vallat
2001-08-12Actually, I was there only to remove an nappropriate hp300Miod Vallat
comment. But I couldn't go without removing some unused sutff as well.
2001-08-12vm_pager.h no moreMichael Shalayeff
2001-08-12KUSER_AREA, BTOPUSRSTACK, P1PAGES are never used, so get rid of them.Miod Vallat
2001-08-12#(endif|else) foo is incorrect, make it #endif /* foo */Heikki Korpela
deraadt@ ok
2001-08-11redundant includes.Artur Grabowski
2001-08-07remove this header which has been unused for over 3 yrs now.Brad Smith
-- Ok'd by: jj@
2001-07-25Change the pmap_enter interface to merge access_type and the wired booleanArtur Grabowski
and arbitrary flags into one argument. One new flag is PMAP_CANFAIL that tells pmap_enter that it can fail if there are not enough resources to satisfy the request. If this flag is not passed, pmap_enter should panic as it should have done before this change (XXX - many pmaps are still not doing that). Only i386 and alpha implement CANFAIL for now. Includes uvm updates from NetBSD.
2001-07-18Get rid of the PMAP_NEW option by making it mandatory for all archs.Artur Grabowski
The archs that didn't have a proper PMAP_NEW now have a dummy implementation with wrappers around the old functions.
2001-07-15add install targetassar
2001-07-05clean up includes.Artur Grabowski
2001-07-04$OpenBSD$Niklas Hallqvist
2001-06-29Remove defines that are now defined elsewhere.Janne Johansson