summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-01-04zap unused variable; ok mcbridePeter Valchev
2004-01-03missing proto; ok hinPeter Valchev
2004-01-03keep track of last session up/down and last successfull readHenning Brauer
2004-01-03``device'' is not written ``devic''.Miod Vallat
2004-01-03print message countersHenning Brauer
2004-01-03add message countersHenning Brauer
2004-01-03Do not use (self) in pfload regress tests, it makes result config-dependant.Cedric Berger
Found by David Krause, analyzed by Ryan McBride.
2004-01-03shut gcc up; ok miodPeter Valchev
2004-01-03#include session.hHenning Brauer
2004-01-03move some session specific stuff to session.h and make the few filesHenning Brauer
that need it include that
2004-01-03Silence a gcc warning: "initialization from incompatible pointer type"Todd C. Miller
The problem is that while ANSI C allows initialization of unions, the initializer must be valid for the first member of the union. Therefore, add a cast to quiet the compiler. Noticed and Ok pvalchev@
2004-01-03decouple the peer list from bgpd_config.Henning Brauer
so many parts of bgpd are not at all interested in the session specific peer structs... allows for some further cleaning
2004-01-03Fix format type mismatch (int vs. ssize_t).Todd C. Miller
2004-01-03missing prototypes; ok espiePeter Valchev
2004-01-03Replace bogus use of fgetln() (which doesn't NUL-terminate strings)Todd C. Miller
with fgets() (which does). Using fgetln() doesn't make a huge amount of sense since passwd entries are required to be short and mustn't contain NULs. This also fixes a bus error on sparc64 (caused by passing a pointer to an int when a pointer to size_t was expected) found by pvalchev@. Tested and OK pvalchev@
2004-01-03we'll have more than one view one day, strutural prepare for thatHenning Brauer
2004-01-03Be more careful with INITIAL-CONTACT and do not delete SPIs when gettingHakan Olsson
an INVALID-SPI notification. Issues noted by Thomas Walpuski. markus@ ok.
2004-01-03factor out the printing stuff and format nicer as wellHenning Brauer
2004-01-03disable TSC for Geode SC1100; Stuart Henderson, pr 3625; ok mickey, deraadtMarkus Friedl
2004-01-03switch to shorter licence at millert@ suggestion.Marc Espie
2004-01-03make sure userland sees memcmp and friends (gcc3)Marc Espie
okay frantzen@
2004-01-03put an mi wrapper around stdarg.h/varargs.h. gcc3 moved stdarg/varargs macrosMarc 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@.
2004-01-03cope with changed imsg_read semanticsHenning Brauer
2004-01-03change imsg_read semantics so that the number of bytes read is returned.Henning Brauer
that means that the callers can (and must) coope with closed connections themselves, what is exactly the desired behaviour.
2004-01-03there is no guarantee we get all we wan with a single read(), so weHenning Brauer
have to do the imsg_read in a loop as well.
2004-01-03send an imsg as list end indicatorHenning Brauer
2004-01-03fix umask, noticed by theoHenning Brauer
2004-01-03Fixes from FreeBSD's libc_rBrad Smith
rev 1.21 Make the libc_r version of select() set the readable or writable file descriptor bit if poll() returns POLLERR, POLLHUP, or POLLNVAL. Othewise, it's possible for select() to return successfully but with no bits set. rev 1.19 Return correct number of total bits set in all fd_set's. Change case of POLLNVAL as an error. Remove POLLHUP and POLLERR from one case, their place is most likely amongst read events. ok marc@
2004-01-03sync the list of acceptable getopt_long options with reality.Brad Smith
Fixes PR 3623 From: binutils CVS 2.11 branch, based on rev 1.15.2.3 ok otto@
2004-01-03do not create pid file. it was just for debugging and there was no properJun-ichiro itojun Hagino
cleanup code. from kame
2004-01-03Make 'unknown error category' message more informative by including errorKenneth R Westerback
number. Same change as was made to scsi_base.c a few days ago. ok deraadt@.
2004-01-03backout segment register restore diff which causes reproducible hangs; ok ↵Peter Valchev
deraadt
2004-01-03as if we didn't know...Henning Brauer
2004-01-03Todd forgot to make obj thereTheo de Raadt
2004-01-02factor out dump.c from rtsol by -DSMALLJun-ichiro itojun Hagino
2004-01-02Mention that, on most 187 and 197, if the SCSI controller is not the bootMiod Vallat
device and no boot from it has been attempted at the prom, it will not get detected. Unfortunately, right now I don't know how to ``warm'' the chip. This also will need to be documented in the insallation notes at some point...
2004-01-02unifdef for readability. req'ed by deraadtJun-ichiro itojun Hagino
2004-01-02MC88110 errata states that, for instruction faults, in case of bus errorMiod Vallat
trap class, the value of the page fault and segment fault bits are undefined; so check for bus error first.
2004-01-02Sync m197_ext_int() logic with m187_ext_int() logic.Miod Vallat
2004-01-02Better openings value computation.Miod Vallat
For now, the result is the same as the hard-coded constant it used to be, due to a pessimistic NUM_IOPB value. This will change.
2004-01-02Relaxed dependencies, and do not undef DEBUG.Miod Vallat
2004-01-02There is no such thing as ``device cpu'' for now.Miod Vallat
2004-01-02Revert 1.100 and 1.102 for now - they cause page table corruption (bloody hell!)Miod Vallat
2004-01-02whitespaceJun-ichiro itojun Hagino
2004-01-02standard order for options;Jason McIntyre
kill a .Pp before a list; move AUTHORS to a more logical place;
2004-01-02net.inet.carp.preempt is disabled by default.Ryan Thomas McBride
Pointed out by david@
2004-01-02some corrections/improvements to the VI COMMANDS section;Jason McIntyre
2004-01-02use .Sq rather than .Dq, which, for some reason, is making -mdoc wobble;Jason McIntyre
2004-01-02The scratch pages used in pmap_zero_page() and pmap_copy_page() being specialMiod Vallat
mappings, they still need the dcache to be invalidated after use.
2004-01-02When both cmmu_dofoo() and cmmu_remote_dofoo() exist, kill the first one,Miod Vallat
and rename the second one to the first one, i.e. have the cmmu_dofoo() functions always take a cpu# parameter. No functional change, simply makes code more readable and saves a few call frames.