summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-28Add support for AMD SB800, where the SMBus control registers have been hiddenMark Kettenis
away. Based on a diff from Bryan Steele. ok deraadt@
2011-05-28several more bizarre casesMarc Espie
2011-05-28renameMarc Espie
2011-05-28Do not allow traffic to be sent with a destination address in 0/8;Paul de Weerd
this is not allowed according to Stevens and RFCs 5735 and 1122. Suggestion to use ENETUNREACH from claudio. OK phessler@, claudio@
2011-05-28Sync MCR0_BROADCAST register naming from FreeBSD now that itsKevin Lo
known the register is to disable broadcast instead of enabling broadcast packets. From Brad
2011-05-28age_newbuf is called from the interrupt context so it can't sleep.Kevin Lo
From Brad. Tested by Thomas Pfaff
2011-05-28Adapt after recent dconf MODULE change.Antoine Jacoutot
2011-05-28sollicitation -> solicitation;Jason McIntyre
2011-05-27Thou shall not use uninitialized TAILQsMiod Vallat
2011-05-27more extra stuff for laterMarc Espie
2011-05-27flesh out flavors, future test that does not match yetMarc Espie
2011-05-27unit-test @pkgpath before we add a lot of junk to itMarc Espie
2011-05-27fix test output for new messageMarc Espie
2011-05-27spacingReyk Floeter
2011-05-27Fix the return values from pipe_kqfilter - kqfilters should return anNicholas Marriott
errno not 0/1. ok guenther
2011-05-27Whitespace nits; from BradKevin Lo
2011-05-26tweak previous; ok martynasJason McIntyre
2011-05-26Add svlan(4) startup bits.Marco Pfatschbacher
From markus@. OK naddy, claudio, reyk.
2011-05-26Add additional check to prevent running scripts when not configured.Reyk Floeter
2011-05-26syncTheo de Raadt
2011-05-26fix one signal race bug, and mark the others that remain much moreTheo de Raadt
specifically ok nicm
2011-05-26no .Pp before/after .S{s,h};Jason McIntyre
2011-05-26fix "check script" by sending all required information to the parent.Reyk Floeter
2011-05-26remove hack to test and create /usr/lib/pkgconfig/ if needed, it's been sixJasper Lievisse Adriaanse
months since it was introduced so it's safe to assume people have this dir now. ok deraadt@
2011-05-26tweak previous;Jason McIntyre
2011-05-26BUGS: there is currently no way to know whether a background process wasAntoine Jacoutot
successfully started so rc_start will always succeed. ok robert@
2011-05-26Don't provide an af hint to getaddrinfo in settunnel(), this functionStuart Henderson
already checks that families of source and destination addresses match and that's all we need. This allows "ifconfig foo tunnel 1::1 2::2" syntax rather than requiring "ifconfig foo inet6 tunnel 1::1 2::2", which in turn allows hostname.if files to create an IPv4-in-IPv6 tunnel without games with shell escapes. ok dcoppa@, seems ok todd@, "Yes, yes and yes" claudio@
2011-05-26slightly clarify -v option descriptionAlexandre Ratchov
2011-05-26make clipping less ugly, from Sviatoslav ChagaevAlexandre Ratchov
2011-05-26add a new -w flag to control whether master volume is automaticallyAlexandre Ratchov
adjusted when new streams are connected and disconnected. Disabling automatic volume adjustment makes sense if all streams are recorded with properly lowered volumes.
2011-05-26Trim another useless if statement, from Ailin Nemui.Nicholas Marriott
2011-05-26No need to call _dl_newsymsearch() twice; ok drahn@Otto Moerbeek
2011-05-26The check for the mcp98243 sdtemp(4) device was too strict. Relax it.Theo de Raadt
Tested by Joe Gidi
2011-05-25Document nearbyint, nearbyintf, nearbyintl.Martynas Venckus
2011-05-25Also enclose variable names with external linkage in __BEGIN_DECLS.Martynas Venckus
Doesn't matter much since C++ ABI used by GCC doesn't mangle variable names; however technically is required by Section 7.5 of the C++ spec. Discussed with/OK guenther@, matthew@.
2011-05-25Document C99 floating-point environment.Martynas Venckus
2011-05-25On PowerPC we cannot manipulate FPSCR[VX]--it's a summary of allMartynas Venckus
the invalid exception bits, as described in Section 3.3.6.1.1 of PowerPC Architecture Programming Environments Manual. A proper way to cause an invalid operation exception is to set FPSCR[VXSOFT]. Similarly, we clear all the FPSCR[VX*] bits otherwise.
2011-05-25Set UX and SX in the system register early in boot. While not necessary onMiod Vallat
the real hardware, some emulators (such as those which name start with `qe' and end in `mu' and are four letters long) expect the cpu behaviour to honour the value of these bits. This is not worth doing but it's cheap.
2011-05-25Add the second serial port, might be the console device on 2E systems.Miod Vallat
2011-05-25Fix two bugs where race conditions might cause stat(2) to fail,Ingo Schwarze
such that security(8) would output garbage on stderr. One reported by <RD at thrush dot com>, the other found by code audit. While here, remove dead code in two other places: stat(_) uses cashed data and cannot fail, not even if the file is removed in between. ok Andrew Fresh
2011-05-25Do not dereference ri_devcmap[] twice; found the hard way by Gilbert FernandesMiod Vallat
(firstname dot lastname at orange dot frogland).
2011-05-25update the hardware list;Jason McIntyre
2011-05-25no comma desired for last Xr in SEE ALSO;Jason McIntyre
2011-05-25Memory leak in error path, from Tiago Cunha.Nicholas Marriott
2011-05-25Nuke a redundant if statement, from Tiago Cunha.Nicholas Marriott
2011-05-25syncTheo de Raadt
2011-05-25add one more signal block for handling '_intmp' (the list of files scheduledTheo de Raadt
to be deleted at termination), and then make the signal handler race safe. ok nicm
2011-05-25memoize handle_config; is not a slow routine per se, but we spendJasper Lievisse Adriaanse
a lot of time in it, so cache the return values. The most gain is from configure scripts/build commands which query several modules at the same time. this results in as much as a 40% speedup for those pkg-config invocations. tested in a bulk/ok landry@
2011-05-25Manpage for dfs(4) with tweaks from jmc@Martin Pieuchot
ok sthen@, kettenis@, miod@
2011-05-25Add dfs(4), a driver to support the Dynamic Frequency Switching featureMartin Pieuchot
found on some G4 PowerBook. Tested by many, thanks. ok sthen@, kettenis@, miod@