summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-01-05document `cvs tag';Jason McIntyre
from joris vink;
2005-01-05spelling;Jason McIntyre
2005-01-05kill whitespace;Jason McIntyre
2005-01-05Correct value here allows cleaner screen display.Dale Rahn
2005-01-05Let wsdisplay drivers return zero for WSDISPLAYIO_[GS]VIDEO ioctls - mostMiod Vallat
of the work is done in the upper layer, but they get to see the ioctl, so don't always return an error.
2005-01-05Fix handling of memory allocation. Both the initial value of eupOtto Moerbeek
and the new value of bup after realloc() were bogus. This bug has been here since the net.2 days. Additionally, make the initial size of the malloc'ed pieces of mem more sane and kill a redundant test before free(). getcwd(3) is now able to return really long paths. Problem spotted by Peter Philipp <philipp at scan-plus dot de> ok millert@ deraadt@
2005-01-05Partially revert some of these changes - misunderstanding between drahn@ and IMiod Vallat
about which diff he had tested.
2005-01-05PIL_AUD should be lower than PIL_SCHED, otherwise the audio code mayFederico G. Schwindt
leave setrunnable() in a bad state; problem reported by robert@, miod@ ok.
2005-01-05Before attempting to initialize the cvs repository, make sure we haveJean-Francois Brousseau
a valid CVSROOT, and abort with the appropriate error message otherwise. Fixes a core dump spotted by jmc@
2005-01-05Document -m flag.Ryan Thomas McBride
2005-01-05Modify pfctl behaviour so that 'set ...' options are no longer "sticky", ie.Ryan Thomas McBride
they are reset to default values if omitted from a subsequent ruleset load. Also: - make sure 'set ...' options are not loaded in anchors. - add a -m ("merge") flag to pfctl which allows an individual option to be set without reseting the others, eg: # echo "set loginterface fxp0" | pfctl -mf - ok henning@ dhartmei@
2005-01-05First steps in cleaning the Zaurus display code:Miod Vallat
- kill the non-wscons code. Really. - KNF, and english fixes. - do not handle WSDISPLAYIO_[GS]VIDEO in the driver - the wsdisplay layer can do this, as long as we provide a burner accessop, so provide one. - kill the emulops indirection. - when setting the color palette in 8 or 4bpp mode, match the values used in the rasops color table (only affects normal white value). test and ok drahn@
2005-01-05- Use defines from pfvar.h for timeoutsRyan Thomas McBride
- instead of erroring on an attempt to set hostid to 0, just set it with arc4random() ok henning@ dhartmei@
2005-01-05Define defaults for the timeouts ensure consistency between kernelRyan Thomas McBride
and userland. ok henning@ dhartmei@
2005-01-05Provide SET_PC_REGS.Miod Vallat
2005-01-05Unbreak m88k build.Mark Kettenis
2005-01-05missed a bit in the last commitDavid Gwynne
2005-01-05Discourage using aggressive mode.Hans-Joerg Hoexer
ok and some help ho@
2005-01-05remove wrong free() after realloc().Hans-Joerg Hoexer
ok miod millert markus
2005-01-05Use $OpenBSD$ instead of $Id$. ok damien@Jonathan Gray
2005-01-05remove dead code, log connect() failures with level error, ok djm@Markus Friedl
2005-01-05copyoutstr doesn't work so well with the kernel addressesTed Unangst
2005-01-05use standard root prompt in examplesJared Yanovich
2005-01-05definitions of the extra registers for the usb host controller and codeDavid Gwynne
that uses them to try and correctly init the controller. ok drahn@
2005-01-04Seems to be working on C3000, still needs layering fix and 1/2 slot 'probing'.Dale Rahn
2005-01-04use the new intr_disestablish code.Dale Rahn
2005-01-04implement intr_disestablish.Dale Rahn
2005-01-04add prototype for disestablish function (coming soon), remove uselessDale Rahn
includes, some #if 0 code.
2005-01-04`done' can be NULL;Jason McIntyre
from matthias kilian (pr #4061): non-reversed version applied w/ NULL marked up miod says it's right enough;
2005-01-04space between macro args and punctuation;Jason McIntyre
2005-01-04a little spacing and indent;Jason McIntyre
2005-01-04a little spacing and indent;Jason McIntyre
2005-01-04Kill old, unused, Mach defines, and provide a correct SET_PC_REGSMiod Vallat
implementation - due to the awkwardness of the m88k architecture, PC_REGS can NOT be an lvalue.
2005-01-04silence real gcc 3.3.5Marc Espie
okay mickey@.
2005-01-04SET_PC_REGS, arches tested between me and miod.Marc Espie
2005-01-04switch to SET_PC_REGS if available, okay miod@Marc Espie
2005-01-04Remove or comment out stuff installation media can live without.Miod Vallat
2005-01-04typoJared Yanovich
2005-01-04syncTheo de Raadt
2005-01-04lower case the .Nm to make `man -k ipcomp' less confusing;Jason McIntyre
2005-01-04- make sure int is in running state before touching the multicast filterBrad Smith
- remove song and dance with IFF_UP, based on NetBSD commit to mc(4) ok martin@
2005-01-04restrict forwarding to ipsec processed traffic of ip.forwarding==2Markus Friedl
ok deraadt, henning, fgsch, mcbride
2005-01-04document zaurus addition;Jason McIntyre
2005-01-04typo;Jason McIntyre
2005-01-04Slight comments cleanup.Miod Vallat
2005-01-04ifdef MCDEBUG printf on FIFO overflows as discussed with NickMartin Reindl
2005-01-04Better check for UPT filling; saves one more page for userland on most hp300...Miod Vallat
2005-01-04add snprintf sanity check.Moritz Jodeit
ok millert@, henning@
2005-01-04add some snprintf sanity checks.Moritz Jodeit
ok millert@, henning@
2005-01-04Minor KNF, s/for(/for (/Todd C. Miller