Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-12-20 | Vax does not need to __HAVE_PMAP_PHYSSEG. | Miod Vallat | |
2005-12-14 | convert _FOO_SOURCE -> __FOO_VISIBLE in machine. OK deraadt@ | Todd C. Miller | |
2005-12-14 | Make clock_t consistent across platforms as a 32 bit int. OK deraadt@ | Todd C. Miller | |
2005-12-13 | First step in include files overhaul. Use __FOO_VISIBLE (as defined | Todd C. Miller | |
in sys/cdefs.h) instead of _FOO_SOURCE. Also fix several namespace pollution issues, including the byte order defines. OK deraadt@ | |||
2005-11-24 | add lint-specific hacks. at the same time, clean out a lot of ancient | Theo de Raadt | |
cruft for old compilers and environments. there may be a 2nd round of polishing after this; ok miod and others | |||
2005-11-08 | use atop() | Martin Reindl | |
2005-11-06 | Kill deprecated vm_offset_t and vm_size_t types on vax. | Miod Vallat | |
2005-06-30 | oops, used USRPTSIZE incorrectly | Theo de Raadt | |
2005-06-29 | 40MB virtual address space in p0; start mmap's 8MB into the data segment | Theo de Raadt | |
ok tdeval | |||
2005-05-25 | comment typo | Jason Wright | |
2005-04-19 | nothing uses spllowersoftclock() anymore | Michael Shalayeff | |
2005-04-14 | internal _BSD_WCTRANS_T_, _BSD_MSTATE_T_, _BSD_WCTYPE_T_ types. | Marc Espie | |
2005-04-11 | use MD #define to choose stackgap size per-architecture. on sparc, special | Theo de Raadt | |
case sun4c/sun4 -- because address space is more constrained | |||
2005-03-31 | Reduce MAX and Default DATA Segment sizes to leave more MMAP space for | Thierry Deval | |
use by mmap_malloc. This change and MMAP(2) malloc need some care to rebuild the system. I definitely suggest using a snapshot when it appears in the coming days. For the daring people : - update src - build and install new kernel, no reboot yet - build and install new libc - build and install new gcc - build and install new make - build and install new binutils - reboot - make build (thanks martin@) | |||
2005-01-04 | SET_PC_REGS, arches tested between me and miod. | Marc Espie | |
2004-11-28 | MAXSLP is not really an MD-configurable define so move it to param.h; miod@ ↵ | Michael Shalayeff | |
testing | |||
2004-11-26 | Kill __HAVE_EVCOUNT, now that all architectures provide them. | Miod Vallat | |
2004-10-16 | Provide a dummp __swap64md() on MD_SWAP architectures; needed by nm(1) now. | Miod Vallat | |
2004-08-06 | rename sparc kill_user_windows() to pmap_unuse_final(). provide empty stubs | Theo de Raadt | |
on all other architectures. remove last architecture dependent #ifdef from uvm code. | |||
2004-08-06 | provide md USPACE_ALIGN zero on all but mips; deradat@ pefo@ ok | Michael Shalayeff | |
2004-07-13 | #define __HAVE_PMAP_DIRECT and use it. requested by art | Ted Unangst | |
2004-07-07 | new-style interrupt counters. based on initial work by hugh. ok miod | Theo de Raadt | |
2004-06-13 | debranch SMP, have fun | Niklas Hallqvist | |
2004-06-09 | rename POOLPAGE macros to pmap_map_direct | Ted Unangst | |
break out uvm_km_page bits for this case, no thread here lots of testing tech@, deraadt@, naddy@, mickey@, ... | |||
2004-05-20 | Properly flush instruction cache for ptrace(PT_WRTIE_{DI}, ...) on powerpc | Mark Kettenis | |
and m68k. ok drahn@, millert@ | |||
2004-04-19 | remove the GATEWAY junk thingy; at the same time, select a new fat | Theo de Raadt | |
cluster value that noone will really need to crank. | |||
2004-01-03 | put an mi wrapper around stdarg.h/varargs.h. gcc3 moved stdarg/varargs macros | Marc Espie | |
to built-ins, so eventually we will have one version of these files. Special adjustments for the kernel to cope: machine/stdarg.h -> sys/stdarg.h and machine/ansi.h needs to have a _BSD_VA_LIST_ for syslog* prototypes. okay millert@, drahn@, miod@. | |||
2003-11-10 | Get rid of the "struct pte" bitfield, and use straight integers. | Miod Vallat | |
Makes the code slightly more readble, removes casts, and makes some specific constants defined for the bitfields disappear in pmap.c... No functional change. | |||
2003-11-06 | Do not use a reserved PTE bit as the wired bit, this can bite you. | Miod Vallat | |
From NetBSD (PR #11121) | |||
2003-08-01 | remove the strcpy/strcat macros | Anil Madhavapeddy | |
deraadt@ ok | |||
2003-06-03 | terms 3 & 4 cleanup based on "terms" file | Theo de Raadt | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-05-11 | string cleaning; krw ok | Theo de Raadt | |
2002-11-05 | Add a WEAK_ALIAS macro, to be used by libc/libc_r shortly. | Miod Vallat | |
2002-11-01 | Working atomic locks on vax for libc_r. | Miod Vallat | |
ok marc@ | |||
2002-10-23 | Add a trivial va_copy() macro to all architectures but powerpc | Todd C. Miller | |
(which I will leave for Dale since it needs special handling). From NetBSD (and same as sparc64). espie@ OK | |||
2002-09-21 | Add support for OS defined halt action on Cheetah and Omega. | Hugh Graham | |
Should also work on Legacy, but tester hasn't reported back yet... | |||
2002-09-12 | Change the PMAP_{MAP,UNMAP}_POOLPAGE api to take a vm_page as argument | Artur Grabowski | |
and return a VM_PAGE. This is to allow sparc64 to cheaply record the VAC color for those pages. | |||
2002-09-10 | Change the pmap_zero_page and pmap_copy_page API to take the struct vm_page * | Artur Grabowski | |
instead of the pa. Most callers already had it handy and those who didn't only called it for managed pages and were outside time-critical code. This will allow us to make those functions clean and fast on sparc and sparc64 letting us to avoid unnecessary cache flushes. deraadt@ miod@ drahn@ ok. | |||
2002-08-09 | Get rid of remaining __P usage (except for imported code); | Jason Peel | |
ok millert@, rogue ok pjanzen@ | |||
2002-07-31 | fake out ELF stuff | Theo de Raadt | |
2002-07-30 | Add SIZE_MAX define. This is the same as SIZE_T_MAX but more portable. | Todd C. Miller | |
The only OSes I've seen that use SIZE_T_MAX are 4.4BSD-derived whereas SYSV things seem to use SIZE_MAX. It is also consistent with SSIZE_MAX (which we already have). deraadt@ OK | |||
2002-06-12 | bdevtomaj worked well, but is no longer needed. | Hugh Graham | |
2002-06-11 | New boot code, mostly from ragge's work in NetBSD. | Hugh Graham | |
Some header syncing and a couple network drivers came along for the ride. Assembly files have been renamed from .s to .S to facilitate diffs. Kernel is backwards compat - with manual interaction. OpenBSD features have been preserved. | |||
2002-06-07 | Remove obsolete CLKF_BASEPRI(). ok niklas@, miod@ and art@ | Thomas Nordin | |
2002-05-25 | Add a board type for VXT2000+. Info gathered by Daniel SZILAGYI. | Hugh Graham | |
2002-05-11 | Avoid multiple definitions of macros in float.h and limits.h. This | Todd C. Miller | |
is a long-standing problem that recently showed up on vax because due to some indirection cpp no longer believes the definitions are equivalent (though they really are). From espie@ | |||
2002-05-06 | Increase MAXPHYS from 63K to 64K which brings it in line with all our | Todd C. Miller | |
other architectures and matches NetBSD-current. hugh@ OK | |||
2002-04-29 | Define placeholders for art's splassert() debugging stuff on all arches. | Miod Vallat | |
Currently as no-ops everywhere. ok art@, deraadt@ | |||
2002-04-24 | Introduce a new file, machine/internal_types.h, to hold that specific arch | Marc Espie | |
type characteristics. internal_types.h will contain only settings invisible from standard C, e.g., in the __* or _[A-Z]* namespace, and be reused by files like limits.h. This allows us to shorten machine/limits.h greatly, as all the common defines are now in sys/limits.h, plus a small stub in internal_types.h. Tested on all arches as far as I know. Approved after discussion with art, millert, deraadt, and others. |