summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-12-05nuke rominterpret and update romgetcursoraddr() to work on sparc64; based on ↵Jason Wright
NetBSD work.
2001-12-05document new options; from netbsd.Niels Provos
2001-12-05Make OF_interpret() work correctly; based on NetBSD fix, but maintainingJason Wright
old OF_interpret(cmd, nreturns, ...) prototype (why/where/when would you need nargs anyway?)
2001-12-05make nkmempages dynamic based on memory. okay art@ from netbsd:Niels Provos
date: 2000/02/11 19:22:52; author: thorpej; Add some very simple code to auto-size the kmem_map. We take the amount of physical memory, divide it by 4, and then allow machine dependent code to place upper and lower bounds on the size. Export the computed value to userspace via the new "vm.nkmempages" sysctl. NKMEMCLUSTERS is now deprecated and will generate an error if you attempt to use it. The new option, should you choose to use it, is called NKMEMPAGES, and two new options NKMEMPAGES_MIN and NKMEMPAGES_MAX allow the user to configure the bounds in the kernel config file.
2001-12-05Must include machine/pmap.h and machine/vmparam.h here nowArtur Grabowski
that uvm headers won't do that for us.
2001-12-05Make DEBUG not default, and make the default compileNiklas Hallqvist
2001-12-05Oops forgot to regen.Artur Grabowski
2001-12-05Break out the part that lowers v_holdcnt in brelvp into an own functionArtur Grabowski
and make it and vhold into public interfaces.
2001-12-05Update pmap_update macro for arches Art missed. Still just a noop.Todd C. Miller
2001-12-04Yet another sync to NetBSD uvm.Artur Grabowski
Today we add a pmap argument to pmap_update() and allocate map entries for kernel_map from kmem_map instead of using the static entries. This should get rid of MAX_KMAPENT panics. Also some uvm_loan problems are fixed.
2001-12-04Readd VOP_MMAP, will be used soon. Right now it's just a question toArtur Grabowski
the filesystem if we're allowed to mmap the file.
2001-12-04All files are copied from the skel dir, not just dot.*Todd C. Miller
2001-12-04Add declaration of "state" to _simple_lock_assert(). Since it isTodd C. Miller
an int this can safely be omitted but it is bad style to do so. Closes PR 2223.
2001-12-04cgthree man pageJason Wright
2001-12-04commented out entry for cgthreeJason Wright
2001-12-04skeleton driver for cgthree (at the same point as cgsix)Jason Wright
2001-12-04enable uplcom on macppc GENERIC. tested by myself, and okay'd by drahn@lebel
2001-12-04Kill setjmp/longjmpTodd C. Miller
o fix error recovery in the parser so there is no longer a need for jmping o make SIGURG handler interupt syscalls and just set a flag that we test for later. Use waitpid() not wait3() for portability. Restart waitpid() loop if another signal interrupts us. Calling dologout() from signal handlers is safe because it doesn't use stdio, nor do the two functions it calls (logout and ftpdlogwtmp).
2001-12-04remove direct entry points for bwtwo, cgfourteen, cgsix, cgthree, and tcxJason Wright
2001-12-04man page for cgsixJason Wright
2001-12-04Now that we found the bug, go back to not stop on SPL NOT LOWERED..Niklas Hallqvist
2001-12-04add commented out entries for cgsix at sbus and wsdisplay at cgsixJason Wright
2001-12-04add stuff for wsdisplayJason Wright
2001-12-04wscons driver for cgsix (based on vgafb from macppc and cgsix from sparc)Jason Wright
Still kinda ugly, but seems to work.
2001-12-04Provide eeprom(8) on sparc64.Miod Vallat
2001-12-04more bits defs; from netbsdMichael Shalayeff
2001-12-04FREE_LOCK_INTERLOCKED drops the lock owner without changing lock "state".Artur Grabowski
ACQUIRE_LOCK_INTERLOCKED set the owner back without validating that the state is ok. This could lead to changed states and FREE_LOCK could set spl to any random value. Try to preserve the state of the lock. XXX - all this locking in the code is insane. all this debugging code breaks stuff.
2001-12-04Support for the new uvm sysctls.Artur Grabowski
2001-12-04regenMichael Shalayeff
2001-12-04compaq smart array 5* series, from freebsd's ciss(4)Michael Shalayeff
2001-12-04duplicate prohibition entry; from Dan Weeks <danimal@danimal.org>Michael Shalayeff
2001-12-04some grammer in previous; fromBrian Poole <raj@cerias.purdue.edu>Michael Shalayeff
2001-12-04do not open the device for writing if not needed to; millert@ ok & helpMichael Shalayeff
2001-12-04missing \nMichael Shalayeff
2001-12-04Add some macros; millert@ ok.Federico G. Schwindt
2001-12-04add missing no_default_msa FEATURETodd C. Miller
2001-12-04sync with realityTodd C. Miller
2001-12-04part of i386 isr patches; OK niklas@Marco S Hyman
2001-12-04Do not fail on an existing but empty version fileNiklas Hallqvist
2001-12-04New try at a level based irq system.Niklas Hallqvist
2001-12-03for MAP_ANON, dont mention giving an fd of anything but -1, this never worked.Eric Jackson
2001-12-03Document rdr rules with port ranges.Daniel Hartmeier
2001-12-03Style, also make the fact that boot_osflags needs to contain "-a" for theMiod Vallat
system to boot multiuser. Based on feedback from Dan Shechter <danshtr@yahoo.com> on alpha@
2001-12-03reason int -> u_short. From Mike Pechkin.Daniel Hartmeier
2001-12-03For nat, binat and rdr rules, don't allow different address families inDaniel Hartmeier
one rule. pf can't translate IPv4 <-> IPv6 packets. Such rules didn't work, even if they were falsely accepted before.
2001-12-03Ignore leading whitespace in commands. From Frank Denis. Closes PR 2226.Daniel Hartmeier
2001-12-03Remove the last line, pf does support IPv6 now.Daniel Hartmeier
From Dries Schellekens. Closes PR 2221.
2001-12-03Don't reset pf_status.debug and .since on DIOCCLRSTATUS.Daniel Hartmeier
From Dries Schellekens. Closes PR 2227.
2001-12-03Change UI fifo open to O_RDWR to avoid problems on some OSes (such asHakan Olsson
FreeBSD). Reported by Tariq Rashid <tariq@inty.net>.
2001-12-03be more verbose on panic. patch by form@.Mike Pechkin
art@ ok.