summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-12-10Add UI option 'R' to trigger isakmpd reinit (same as SIGHUP).Hakan Olsson
2001-12-10ESP and AH are now enabled. -permit == -bypass. Regroup 'flow' modifiers a bit.Hakan Olsson
2001-12-10ESP and AH now enabled by default. Mention IPv6 forwarding. Various typo fixes.Hakan Olsson
2001-12-10Remove LFS crud.Artur Grabowski
2001-12-10Update commentArtur Grabowski
2001-12-10Merge in struct uvm_vnode into struct vnode.Artur Grabowski
2001-12-10Define MCLBYTES from MCLSHIFT, rather than providing the final value.Miod Vallat
(sync with other arches)
2001-12-10Not needed/used anymore.Miod Vallat
2001-12-10No need to include <sys/dmap.h> and define related variables.Miod Vallat
2001-12-10bogus __deadTheo de Raadt
2001-12-09i like it this way betterMichael Shalayeff
2001-12-09add auth2_challenge_stop(), simplifies cleanup of kbd-int sessions,Markus Friedl
fixes memleak.
2001-12-09Fix an incorrect example, reported by Gaël Queri <gqueri@mail.dotcom.fr>Miod Vallat
2001-12-09Do not use stdio functions after a successfull call to daemon(), useMiod Vallat
syslog() instead. ok millert@
2001-12-09Do not use stdio functions after a successfull call to daemon(), useMiod Vallat
syslog() instead. Also, be sure to unlink the pid file and to restore screen when exiting from outside a signal handler. ok millert@
2001-12-09*** empty log message ***Miod Vallat
2001-12-09Use queue.h TAILQ macros instead of accessing members directly.Jason Wright
(And convert a few loops to TAILQ_FOREACH).
2001-12-09Don't access the tq members directly, use the queue.h macros. Also,Jason Wright
convert several of the loops to TAILQ_FOREACH.
2001-12-09document MODGNU_CONFIG_GUESS_DIRS here, ok espiePeter Valchev
2001-12-09Even more ansification.Artur Grabowski
2001-12-09Random ansification.Artur Grabowski
(Does it show that I'm doing a binary search for a bug in a bigger diff?)
2001-12-09un-__PArtur Grabowski
2001-12-09Explicitly unmap and free the pages in pgt_page_free.Artur Grabowski
2001-12-09remove pvalloc and pvfree, use the raw pool_get and pool_put.Artur Grabowski
Make pv allocation non-waiting. sneak in some ansification.
2001-12-09Real pmap_k*. The sun4/sun4c functions are from NetBSD.Artur Grabowski
2001-12-09splbio?!? Where did that come from?Artur Grabowski
2001-12-09Consider PROTO_IPV6 as compressible by CCP.brian
2001-12-09- change flush_atc_entry() prototype, the third argument is indeed a boolean_t,Miod Vallat
and update callers. - move the kernel_pmap case out of pmap_expand(), and explicitely handle this in pmap_enter(). This saves an unlock/lock cycle in pmap_enter(). - put more diagnostic code in #ifdef DIAGNOSTIC/#endif pairs. - fix a few style issues and correct a few comments.
2001-12-08Don't unlink() the same thing twice, ok millert@Miod Vallat
2001-12-08Fix compilation error when building a raid enabled kernel.Thierry Deval
OK deraadt@
2001-12-08Better pmap_kenter_pa() and pmap_kremove() implementation.Miod Vallat
2001-12-08when strerror() has an Unknown error, also set EINVALTheo de Raadt
2001-12-08Use PMAP_MANAGED() macro everywhere instead of hand-expanding it.Miod Vallat
2001-12-08m68k_trunc_page -> trunc_pageMiod Vallat
2001-12-08mflags and len were uninitialized in bridge_broadcast (source of someJason Wright
accounting errors me thinks).
2001-12-08Be 9600-bauds friendly and panic() on unexpected issues, rather than printf()Miod Vallat
in loop.
2001-12-08use only one path to X11 UNIX domain socket vs. an array of pathsKevin Steves
to try. report from djast@cs.toronto.edu. ok markus@
2001-12-08db_console is declared in <ddb/db_var.h>. Fix a typo while there, too.Miod Vallat
2001-12-08Update hardware list, fix a few typos as well.Miod Vallat
2001-12-08sync with freebsd.Federico G. Schwindt
2001-12-08Do not compile the pnp attachments unless they're requested; deraadt@ okFederico G. Schwindt
2001-12-08Partially sync with FreeBSD; mostly pthread_cancel(3) related changes.Federico G. Schwindt
make includes is needed in case you want to play.
2001-12-08style: Use queue.h macro's for list traversal, convert several (&thing)->fooJason Wright
to thing.foo under the principal less puncuation is easier to read.
2001-12-08Go ahead and fix the xircom filter setup to work on big endian too ↵Jason Wright
(untested, but it's pretty similiar to the tested 21143 case).
2001-12-08use htole32() on the data going into the setup frame for the ↵Jason Wright
dc_setfilt_21143() case at least. XXX I'm looking at the other filter setups and they appear to need work for BE too.
2001-12-08save the pid as well, and only do the atexit in the same pidTheo de Raadt
2001-12-08Sprinkle pmap_update calls where relevant and some otherArtur Grabowski
misc pmap usage fixes.
2001-12-07Add ERRORS and STANDARDS sectionsTodd C. Miller
2001-12-07o Turn off ECHONL in addition to ECHOTodd C. Miller
o Return NULL of read(2) returns -1 o Add ERRORS and STANDARDS sections
2001-12-07From XPG4.2: read(2) can return EIO if the process is a member ofTodd C. Miller
a background process attempting to read from its controlling terminal, the process is ignoring or blocking the SIGTTIN signal or the process group is orphaned. Verified against reality...