Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-08-23 | Remove even more old timeout tentacles. | Artur Grabowski | |
2001-08-20 | silence gcc for __dead function. | Miod Vallat | |
2001-08-20 | Bring get[sd]fc() prototypes to <m68k/cpu.h>, this will be needed shortly. | Miod Vallat | |
2001-08-20 | Missed one timeout conversion. | Miod Vallat | |
2001-08-18 | Move the softc into the machdep parts. | Artur Grabowski | |
2001-08-18 | Move pmap_{de,}activate to vm/pmap.h, it's same on all archs. | Artur Grabowski | |
2001-08-12 | less includes | Michael Shalayeff | |
2001-08-12 | vm_extern.h no more | Michael Shalayeff | |
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-08 | New timeouts. | Miod Vallat | |
2001-08-08 | New timeouts. | Miod Vallat | |
2001-08-07 | Not used. | Miod Vallat | |
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-06 | change MSIZE to 256, okay @deraadt | Niels Provos | |
2001-07-05 | Get rid of REAL_CLISTS. It was never implemented and the tentacles are | Artur Grabowski | |
everywhhere. | |||
2001-07-04 | $OpenBSD$ | Niklas Hallqvist | |
2001-06-27 | add the ALTQ device to the rest of the architectures. | Kenjiro Cho | |
2001-06-27 | IPF cleanup; openbsd@davidkrause.com | Angelos D. Keromytis | |
2001-06-27 | MNN is no longer an option. | Artur Grabowski | |
2001-06-27 | recieve -> receive | Nathan Binkert | |
2001-06-27 | Zap old vm. | Artur Grabowski | |
2001-06-25 | add pf device on all architectures. | Kjell Wooding | |
fix my previously bogus MAKEDEVs. If you used pf on a non-i386. the major device number has changed, and you'll need to recreate /dev/pf ok theo | |||
2001-06-25 | cold is in systm now | Michael Shalayeff | |
2001-06-24 | Define splvm() for arches who don't already provide it, with the same | Miod Vallat | |
definition as splimp(). art@ ok | |||
2001-06-23 | no more kernfs | Theo de Raadt | |
2001-06-13 | Recent changes in sys/netinet/ assume you get setsoftnet() via | Miod Vallat | |
<machine/param.h>, which was not the case for these arches. | |||
2001-06-11 | Use MI {trunc,round}_page macros. | Miod Vallat | |
2001-06-08 | Change the paddr_t pmap_extract(struct pmap *, vaddr_t) interface to | Artur Grabowski | |
boolean_t pmap_extract(struct pmap *, vaddr_t, paddr_t *). Matches NetBSD. Tested by various people on various platforms. | |||
2001-05-30 | Preliminary UVM support. UVM kernels don't work for the moment, though. | Miod Vallat | |
2001-05-30 | Bring the root device selection code up-to-date with modern standards | Miod Vallat | |
(and other ports). | |||
2001-05-30 | Oops | Miod Vallat | |
2001-05-30 | Define msgbuf area size better, gets rid of occasionnal noise in dmesg | Miod Vallat | |
ouptput. | |||
2001-05-17 | convert mbuf and cluster allocation to pool, mostly from NetBSD | Niels Provos | |
okay art@ miod@ | |||
2001-05-16 | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) | Hakan Olsson | |
2001-05-13 | PAGE_MASK is (PAGE_SIZE - 1), *not* (PAGE_SHIFT - 1) | Todd C. Miller | |
2001-05-13 | PAGE_SIZE is a constant now. I should know that, I'm guilty as | Miod Vallat | |
far as this port is concerned. | |||
2001-05-13 | Honor the ddb.console sysctl. | Miod Vallat | |
2001-05-11 | unify rd(4) even more | Theo de Raadt | |
2001-05-11 | unify | Theo de Raadt | |
2001-05-10 | Provide PAGE_{MASK,SHIFT,SIZE} constants. | Miod Vallat | |
2001-05-09 | More sync to NetBSD. | Artur Grabowski | |
- Change pmap_change_wiring to pmap_unwire because it's only called that way. - Remove pmap_pageable because it's seldom implemented and when it is, it's either almost useless or incorrect. The same information is already passed to the pmap anyway by pmap_enter and pmap_unwire. | |||
2001-05-06 | Update some comments wrt. the CLSIZE changes. | Artur Grabowski | |
And remove that memory price comment from 1981. It is amusing, but also confusing because the math in there is only correct on vax. | |||
2001-05-05 | Rename configure() to cpu_configure(). | Artur Grabowski | |
Move it from cpu_startup() to main(). | |||
2001-05-05 | Get rid of CLSIZE and all related stuff. | Artur Grabowski | |
CLSIZE -> 1 CLBYTES -> PAGE_SIZE OLOFSET -> PAGE_MASK etc. At the same time some archs needed some cleaning in vmparam.h so that goes in at the same time. | |||
2001-04-29 | ddb command `machine halt' is superceded by `boot halt' now, so remove it | Miod Vallat | |
and remove `machine reboot' as well. | |||
2001-04-17 | Implement cnbell(), an optional entrypoint that rings the console bell; from | Aaron Campbell | |
NetBSD. deraadt@ ok | |||
2001-03-08 | move gif* and faith* into sys/conf/GENERIC. deraadt and angelos ok | Jun-ichiro itojun Hagino | |