summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-10-04fix bogus indentationMarc Espie
2004-10-04cacheing -> cachingPedro Martelletto
2004-10-04do not take the average offset from all peers when calculating the totalHenning Brauer
offset to correct the local clock, but use the median. given a reasonable sized set of servers this makes us nearly immune against outliers or flasetickers, without the need for a horribly complicated outliers detection which does not yield to better results anyway. test & ok otto
2004-10-04make systrace documentation more like reality.marius eriksen
ok millert@
2004-10-04hierarchy is spelt hierarchy, ok djm@Jonathan Gray
2004-10-03syncjoshua stein
2004-10-03nvram driver for i386 through /dev/nvramjoshua stein
currently read-only ok grange@, marius@
2004-10-03Merge locore_c_routines.c into machdep.c, and clear <machine/locore.h> asMiod Vallat
done on mvme88k. <machine/locore.h> is about to die very soon...
2004-10-03Fix a dvorak typo involving Nikolay; reported by David L. Goodrich, thanks!Miod Vallat
2004-10-03new regressions, based on PR 3940Otto Moerbeek
2004-10-03Remove block based mmap optimization. There are newline problemsOtto Moerbeek
(PR 3940, 3941) which can be fixed, but if a match starts at the end of a block and continues into the next block, no match will be found. Measurements by millert@ showed that the improvements of this optimization are non-measurable anyway. Diff from Alexander Taler. ok millert@
2004-10-03Kill <sys/types.h>Alexander Yurchenko
2004-10-03$OpenBSD$ tagAlexander Yurchenko
2004-10-03Add $OpenBSD$ tag.Alexander Yurchenko
2004-10-03put EXAMPLES in the correct place, and change a stop to a colon;Jason McIntyre
2004-10-02Associate ipl levels to clock and statclock coconuts.Miod Vallat
2004-10-02Too much dust on these files, it's time for them to leave the building.Miod Vallat
2004-10-02Typo in comment.Alexander Yurchenko
2004-10-02Minor code cleanup and shrinkage. No functional change.Kenneth R Westerback
2004-10-02- move the fact that it returns 0 on directory end in RETURN VALUESMatthieu Herrb
- add an example - add .Xr opendir Ok millert@, ok and some tweaks jaredy@.
2004-10-02Keep calling getdirentries() until we no longer fill up our buffer.Todd C. Miller
2004-10-02remove if NVLAN here tooBrad Smith
2004-10-02Don't put /bin/test or /bin/[ on install media since they are builtinsKenneth R Westerback
for ksh. ok millert@
2004-10-02convert to 64 bitPer Fogelstrom
2004-10-02Last use of sleep(1) in install scripts was eliminated by recentKenneth R Westerback
re-write of install_cd() so remove sleep(1) from install media. "sure!" deraadt@
2004-10-02let stdbool.h work with recent gcc, since they modified the interface,Marc Espie
again... okay millert@ a while back, needed some more paranoid testing from my part...
2004-10-02convert to 64 bitPer Fogelstrom
2004-10-02Add missing sc_mii, broken by PHY entry point changes.Ryan Thomas McBride
(apparantly only affects cats GENERIC)
2004-10-02add Intel GigBrad Smith
2004-10-02sync em(4) listBrad Smith
2004-10-02ftello and fseek ok and such, ok ottoTheo de Raadt
2004-10-02bgeBrad Smith
2004-10-02mention Dell and HP bge NICs, uncomment the jumbo frames portion and someBrad Smith
other fixes. From FreeBSD
2004-10-02regenBrad Smith
2004-10-02another Broadcom idBrad Smith
2004-10-01First pass at doing regress tests on the optimizer (pfctl -o).Ryan Thomas McBride
Still need to add some more input files to test specific corner cases.
2004-10-01Fix GOT reloc which had flaws in reloc processing.Per Fogelstrom
Big thanks to Mark Kettenis for finding the problem!
2004-10-01No deletions unless initially agreed upon or with a very good reason;Miod Vallat
by popular demand; henning loses 7.5 karma points.
2004-10-01Sync with openpic.c evcount fixes; ok drahn@Miod Vallat
2004-10-01Mention xetc and update with final sizes.Miod Vallat
2004-10-01guarded_access() is really only used by the MVME188 interrupt engine, soMiod Vallat
do not provide it on luna88k. Makes trap() slightly faster on non-MVME188 kernels.
2004-10-01Fix off-by-BAR in IO space finding.Alexander Yurchenko
ok jason@
2004-10-01regenBrad Smith
2004-10-01add ids for Broadcom BCM5750/5751Brad Smith
From: FreeBSD
2004-10-01More mvme88k code cleaning:Miod Vallat
- merge locore_c_routines.c into machdep.c - split machdep.c into really machdep.c content, and board-specific routines (memory sizing, early initialization, etc). No functionnal change.
2004-10-01Get rid of CHECK_PAGE_ALIGN debug macros.Miod Vallat
2004-10-01add a blink_led API (shaves ~1k from GENERIC) rather than have the sameJason Wright
logic in 3 files. Devices register a function to be called to turn the led on and off based on load average. (Note: rerun config and make depend)
2004-10-01more register defnsJason Wright
2004-10-01comment out the listen on statements, we don't want any by default,Henning Brauer
and some minor tweaks
2004-10-01if we're opening a socket for a default listener because no "listen on"Henning Brauer
stetements were found in the config file, and one fails with EPROTONOSUPPORT (this is the case for the default ::1 listener on machines without INET6), remove that listener and move on instead of bailing out. ok claudio