Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-11-07 | Add an alignment argument to uvm_map that specifies an alignment hint | Artur Grabowski | |
for the virtual address. | |||
2001-11-06 | Replace 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-06 | Let 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-06 | Redundant includes. | Artur Grabowski | |
2001-11-01 | Change 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-01 | Always use the IRQ interrupt, and let the SBC_INTR flag only control | Miod Vallat | |
the DRQ interrupt. From NetBSD, improves GENERICSBC reliability. Tested by Takeshi Morimoto. | |||
2001-09-28 | move cdev_decl(pf) into it's proper place, kill cdev_decl(ipl) at the same time | Michael Shalayeff | |
2001-09-22 | Remove more old, dusty, unused defines. | Miod Vallat | |
2001-09-21 | phys_map declaration comes from <vm/vm.h>, no need to declare it locally. | Miod Vallat | |
2001-09-20 | occured->occurred | Mike Pechkin | |
idea from deraadt@ via NetBSD millert@ ok | |||
2001-09-19 | merge vm/vm_kern.h into uvm/uvm_extern.h; art@ ok | Michael Shalayeff | |
2001-09-16 | Make use of "export", "struct" and "member" keywords to be easier to read | Miod Vallat | |
and simpler. | |||
2001-09-14 | Simplify userret. | Artur Grabowski | |
2001-09-12 | mbutl no more | Artur Grabowski | |
2001-09-11 | Fix uvm_km_suballoc() usage flags. ok art@ millert@ | Miod Vallat | |
2001-09-11 | Don't include <vm/vm_kern.h> if you don't need foo_map. | Miod Vallat | |
2001-09-09 | Repair compilation of mac68k GENERIC_SBC kernel. | Miod Vallat | |
From Takeshi Morimoto <morimoto@anat1.med.kyoto-u.ac.jp>, PR #2037 | |||
2001-09-06 | missing machine/ieee.h from NetBSD | Todd C. Miller | |
2001-08-31 | The fact that my tree builds should not prevent the official tree to | Miod Vallat | |
build as well... Right now, .s files can't include unmodified <machine/psl.h> | |||
2001-08-30 | Remove duplicates with m68k/m68k/genassym.cf | Miod Vallat | |
2001-08-30 | Invoke genassym.sh with both m68k/m68k/genassym.cf and | Miod Vallat | |
machine/machine/genassym.cf files (poor man's inclusion). | |||
2001-08-26 | remove useless INUSE references from scsi_xfer->flags; art@ miod@ ok. | Federico G. Schwindt | |
2001-08-25 | Post-regdump cleanup. | Miod Vallat | |
Gotta run, Beck is behind me with a large axe. | |||
2001-08-25 | One 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-23 | Sync with contents of arch/foo/conf directory, might be useful one day. | Miod Vallat | |
2001-08-23 | We can now move timeout_init into main(). | Artur Grabowski | |
2001-08-23 | Remove even more old timeout tentacles. | Artur Grabowski | |
2001-08-23 | Convert the last old-timeout, tested by beck@ | Miod Vallat | |
2001-08-20 | Oops, the vacuum cleaner went too far. Blush, I was sure I had tested | Miod Vallat | |
this... | |||
2001-08-20 | Not only is Apple hardware disgusting, but code doesn't even compile. | Miod Vallat | |
2001-08-20 | Bring get[sd]fc() prototypes to <m68k/cpu.h>, this will be needed shortly. | Miod Vallat | |
2001-08-18 | Move pmap_{de,}activate to vm/pmap.h, it's same on all archs. | Artur Grabowski | |
2001-08-15 | New timeouts, tested by beck@. | Miod Vallat | |
2001-08-13 | SYSPTSIZE is orhpaned, so g/c the poor define. | Miod Vallat | |
2001-08-13 | ecacheon(), ecacheoff() good bye. | Miod Vallat | |
2001-08-12 | KUSER_AREA, BTOPUSRSTACK, P1PAGES are never used, so get rid of them. | Miod Vallat | |
2001-08-12 | g/c unused fields. | Miod Vallat | |
2001-08-12 | #(endif|else) foo is incorrect, make it #endif /* foo */ | Heikki Korpela | |
deraadt@ ok | |||
2001-08-11 | Unnecessary and redundant includes. | Artur Grabowski | |
2001-08-11 | redundant includes | Artur Grabowski | |
2001-08-11 | redundant includes. | Artur Grabowski | |
2001-08-11 | unnecessary includes. | Artur Grabowski | |
2001-08-06 | remove vm_conf.h; art@ ok | Michael Shalayeff | |
2001-07-31 | type mismatch fix. | Bob Beck | |
2001-07-25 | Change the pmap_enter interface to merge access_type and the wired boolean | Artur 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-18 | Get 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-15 | add install target | assar | |
2001-07-09 | Trivial ether_input_mbuf(). | Federico G. Schwindt | |
2001-07-05 | Get rid of REAL_CLISTS. It was never implemented and the tentacles are | Artur Grabowski | |
everywhhere. | |||
2001-07-05 | Get rid of the wrapper macros around extent_alloc*1 | Artur Grabowski | |
Pass the right amount of arguments and rename them back to their right names. |