summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-05-01Update description of disk_unbusy(); from NetBSDTodd C. Miller
2004-05-01pthead_supsend_all_np and pthread_resume_all_np from freebsd viaMarco S Hyman
Kurt Miller <truk at optonline.net>. Kurt says: They're needed for the java hotspot compiler in the 1.3+ jdk OK brad@
2004-05-01Install /etc/wsconsctl.conf on luna88k.Miod Vallat
2004-05-01becuase lint says so; henning okTheo de Raadt
2004-05-01let __strerror fill precisely the part of the buffer it can.Marc Espie
okay millert@
2004-05-01priv revoking; tested by millertTheo de Raadt
2004-05-01Fix nasty bug where driver would not correctly catch and handle an rnrBob Beck
condition when it was due to the the recieve buffers being exhausted with no packet transmits during that time. Symptom was that the fxp would simply stop interrupting for the next 15 seconds until the watchdog kicked in and reset the chip due to 15 seconds of inactivity, making the fxp very poorly behaved when hammered on hard. ok deraadt@
2004-04-30rbootd privsep uid/gidTheo de Raadt
2004-04-30Unbreak building pfsync without carp. Found by marc@Ryan Thomas McBride
2004-04-30Mention siginterrupt; OK deraadt@Todd C. Miller
2004-04-30Correctly cope with unaligned memory pointers in d16_b*()Miod Vallat
2004-04-30allow for ccd on ramdisk; per weissmanndude's request and testingMichael Shalayeff
2004-04-30Fix logic botch resulting in a too optimistic openings value.Miod Vallat
2004-04-30remove MAX_PREFIX_PER_AS debug gunk, claudio djm okHenning Brauer
2004-04-30Sync synopsis section with reality.Miod Vallat
2004-04-30plug memory leaks; henning okTheo de Raadt
2004-04-30Add tests for strerror.Marc Espie
2004-04-30Let __strerror work by fixing a number of problems. Work by tholo and I,Marc Espie
okay millert@. - atoi was bogus. - atoi was not reentrant. - there's no reason to cast stuff to unsigned int.
2004-04-30oops, this was a reference to the local delivery agent - correct itJason McIntyre
to /usr/libexec/mail.local; from millert@
2004-04-30the mail command lives in /usr/bin, not /bin;Jason McIntyre
ok xsa@ henning@
2004-04-30more altq parameter tweaks to silence warnings.Kenjiro Cho
noticed by david@
2004-04-30modify pf63 and pf64 to pass the stricter check that was added recently.Kenjiro Cho
noticed by david@
2004-04-30kill extra space at line start;Jason McIntyre
from ray at cyth dot net (PR 3763); also punctuation fixes; ok tom@
2004-04-30typo;Jason McIntyre
from ray at cyth dot net (PR 3762);
2004-04-30missing full stop;Jason McIntyre
2004-04-30missing full stop;Jason McIntyre
2004-04-30spellingTheo de Raadt
2004-04-29Better checking of minimum payload lengths. Drop out safely when an unknownHans-Joerg Hoexer
payload type is encountered. While around, do some KNF. ok ho@
2004-04-29reminder to set net.inet.ip.forwarding/net.inet6.ip6.forwarding in sysctl.confMike Frantzen
ok cedric@ mcbride@
2004-04-29sock -> fd; ok henningTheo de Raadt
2004-04-29Repair depend phaseMiod Vallat
2004-04-29document abbreviated commands -- same way as systat; ok henningTheo de Raadt
2004-04-29Sync with md5.c rev. 1.4Todd C. Miller
2004-04-29Changes inspired by Markus's rmd160 implementation:Todd C. Miller
o Make MD5Update() more readable o Simplify padding in MD5Final() o Do copy + byte flip in MD5Transform() instead of in the caller The result is a faster md5 and the byte order foo is kept to a minimum.
2004-04-29Bugfix sync with mvme68k:Miod Vallat
- wait until all RX processing is over to invoke ddb upon break - turn off the most annoying log() messages unless option DEBUG
2004-04-29Undo some recent prototype changes; it is legal to pass the helperTodd C. Miller
functions can take a NULL buf pointer. They will malloc memory as needed in this case.
2004-04-29TyposMiod Vallat
2004-04-29Continue factorizing m88k common code, this time files in <arch>/<arch>Miod Vallat
which were copied verbatim from mvme88k to luna88k. This requires backing out syntactic sugar in mvme88k kernel configuration files which would deduct the required processor types from the board models, as the common code only depends upon the M88100 and M88110 defines.
2004-04-29The data pointer passed to the transform function may not be properlyTodd C. Miller
aligned so copy it in a way that a) is endian indepenent and b) does not rely on alignment. Problem found and solution tested by hshoexer@
2004-04-29Correctly report empty a.out objects as "no name list" instead of "bad format".Miod Vallat
ok mickey@ millert@
2004-04-29typo in SEE ALSO;Jason McIntyre
2004-04-29luna88k needs a <machine/profile.h> as well, so share it with mvme88k.Miod Vallat
2004-04-29Correctly initialize the hardware's memory address on MVME376, it usesMiod Vallat
A24 accesses. Fixes the reccurent timeout problems.
2004-04-29a slight polishing...Theo de Raadt
2004-04-29unused variables; ok mcbrideTheo de Raadt
2004-04-29more KNFTodd C. Miller
2004-04-29Some KNFTodd C. Miller
2004-04-28Use the FOO_DIGEST_LENGTH macrosTodd C. Miller
2004-04-28Sync userland sha2.c with kernel. The SHAXXX_End and SHAXXX_Data functionsTodd C. Miller
have been removed; we provide these in userland but not in the kernel.
2004-04-28KNF: function names should be at column 0 for easier grepping.Todd C. Miller