Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-05-06 | Add casts to vaddr_t to round_page() and trunc_page() calls since | Todd C. Miller | |
those macros no longer have an explicit cast inline. Needed because you can't do bitwise ops on a void *. | |||
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 | Remove the (vaddr_t) casts inside the round_page and trunc_page macros. | Artur Grabowski | |
We might want to use them on types that are bigger than vaddr_t. Fix all callers that pass pointers without casts. | |||
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-05-05 | Repair non-UVM kernels | Todd C. Miller | |
2001-05-04 | Substantial update from NetBSD, most notably gives us UVM support; millert@ ok | Aaron Campbell | |
2001-05-01 | convert to new timeouts | Todd C. Miller | |
2001-04-06 | Use pool to allocate pmap instead of malloc. OK'd by art@ | Todd C. Miller | |
2001-03-08 | move gif* and faith* into sys/conf/GENERIC. deraadt and angelos ok | Jun-ichiro itojun Hagino | |
2001-01-31 | based on art's sparc patch: | Jason Wright | |
mmap should return -1 on failure, not EOPNOTSUPP. As it was now, an mmap of /dev/mem always returned page 45. | |||
2001-01-22 | Define ARCH_ELFSIZE that is the default elf size on this arch. | Artur Grabowski | |
2000-11-10 | Change the ktrace interface functions from taking the trace vnode to taking the | Artur Grabowski | |
traced proc. The vnode is in the proc and all functions need the proc. | |||
2000-11-10 | seperate -> separate, okay aaron@ | Niels Provos | |
2000-10-31 | Trim the fat, needs testing. | Todd C. Miller | |
2000-10-18 | typo in comment; from gluk@ptci.ru | Michael Shalayeff | |
2000-09-26 | Implement getnulldev that returns the dev_t for "/dev/null". | Artur Grabowski | |
2000-07-11 | since .cvsignore is there, .keep_me is not needed | Theo de Raadt | |
2000-07-06 | Change splsoftclock() call to spllowersoftclock() to conform with other | Hakan Olsson | |
code and keep old behaviour. (art@ ok) | |||
2000-07-06 | Add spllowersoftclock(), same as splsoftclock(). (art@ ok) | Hakan Olsson | |
2000-06-23 | remove obsolete vtrace guts; art@ | Michael Shalayeff | |
2000-06-18 | Allow S to be overridden like on the other arches; provos@ | Todd C. Miller | |
2000-06-08 | Add explicit inclusions of signalvar.h to files actually using syms defined | Niklas Hallqvist | |
there but relying on an indirect inclusion | |||
2000-06-05 | Changes to exit handling. | Artur Grabowski | |
cpu_exit no longer frees the vmspace and u-area. This is now handled by a separate kernel thread "reaper". This is to avoid sleeping locks in the critical path of cpu_exit where we're not allowed to sleep. From NetBSD | |||
2000-05-25 | cause traversal into arch & subdirectories for the purposes of manual page ↵ | Theo de Raadt | |
install... | |||
2000-03-23 | New API for timeouts. Replaces the old timeout()/untimeout() API and | Artur Grabowski | |
makes it the callers responsibility to allocate resources for the timeouts. This is a KISS implementation and does _not_ solve the problems of slow handling of a large number of pending timeouts (this will be solved in future work) (although hardclock is now guarateed to take constant time for handling of timeouts). Old timeout() and untimeout() are implemented as wrappers around the new API and kept for compatibility. They will be removed as soon as all subsystems are converted to use the new API. | |||
2000-02-22 | enlarge msgbuf, somewhat line netbsd did | Theo de Raadt | |
2000-01-14 | Might as well ding the version number. | Jason Downs | |
2000-01-14 | I could be wrong, but I doubt the world is going to end this year. Let's | Jason Downs | |
give us at least through 2038 (which is the end of time, anyway). :-) | |||
2000-01-09 | add INET6 into conf/GENERIC. | Jun-ichiro itojun Hagino | |
add pseudo-devices for IPv6 into arch/*/conf/GENERIC. nuke arch/*/conf/GENERIC.v6. | |||
1999-12-14 | Compile. | Jason Downs | |
1999-12-08 | bring in KAME IPv6 code, dated 19991208. | Jun-ichiro itojun Hagino | |
replaces NRL IPv6 layer. reuses NRL pcb layer. no IPsec-on-v6 support. see sys/netinet6/{TODO,IMPLEMENTATION} for more details. GENERIC configuration should work fine as before. GENERIC.v6 works fine as well, but you'll need KAME userland tools to play with IPv6 (will be bringed into soon). | |||
1999-12-08 | add GENERIC.v6 (IPv6 test configuration). to be integrated into GENREIC. | Jun-ichiro itojun Hagino | |
1999-11-22 | add empty mmioctl() implementation for new /dev/mem interface for all | Matthieu Herrb | |
architectures. | |||
1999-11-08 | move MI definition of rd into it's MI place also fixing | Michael Shalayeff | |
attributes, allowing kernels to exist w/ rd as the only disk device. tested on a few archs; niels@ & millert@ ok | |||
1999-10-05 | Kill .raw reference; don't know why I didn't see this sooner. | Jason Downs | |
1999-09-18 | Fix device existance check. | Jason Downs | |
1999-09-18 | Fix art's typo. | Jason Downs | |
1999-09-03 | Change the pmap_enter api to pass down an argument that indicates | Artur Grabowski | |
the access type that caused this mapping. This is to simplify pmaps with mod/ref emulation (none for the moment) and in some cases speed up pmap_is_{referenced,modified}. At the same time, clean up some mappings that had too high protection. XXX - the access type is incorrect in old vm, it's only used by uvm and MD code. The actual use of this in pmap_enter implementations is not in this commit. | |||
1999-08-18 | Default to loading bsd.rd from $OSREV/hp300/bsd.rd. | Jason Downs | |
1999-08-17 | New cpu_fork API to take a stack in which you point the child's stackpointer | Niklas Hallqvist | |
to, at the bottom or the top, depending on your architecture's stack growth direction. This is in preparation for Linux' clone(2) emulation. port maintainers, please check that I did the work right. | |||
1999-08-16 | Kill meaningless reset printf(). | Jason Downs | |
1999-08-16 | Add cdboot... | Jason Downs | |
1999-08-16 | Implement real CD booting, aka SYS_CDBOOT, the LIF file small enough to | Jason Downs | |
fit in the begining of an ISO9660 image... | |||
1999-08-15 | Add missing HP385 defines... | Jason Downs | |
1999-07-20 | 126 -> NBT_BAD | Constantine Sapuntzakis | |
Fix disklabel/bad sectors stuff in wd | |||
1999-07-18 | pmap_activate() and pmap_deactivate() are MD | Theo de Raadt | |
1999-07-18 | fix pmap_activate() and pmap_deactivate() arguments after art changed things | Theo de Raadt | |
1999-07-18 | fix pmap_activate() and pmap_deactivate() arguments after art changed things | Theo de Raadt | |
1999-07-08 | flesh out .Dt | Theo de Raadt | |