summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-09smtpd joins the 7 other daemons that share the same log.c file.Reyk Floeter
The only major difference was the "log_trace" concept that is only used by smtpd - move it from log.c into util.c and make it a local concept. This also needed to rename the global "verbose" variable to "tracing" in a few places. OK krw@ gilles@ eric@
2017-01-09The point of ieee80211_node_leave() is to place the node in COLLECT state.Stefan Sperling
Return early and do nothing if the node is already in COLLECT state upon entry to this function.
2017-01-09When acting as hostap, negotiate HT before calling the driver's ic_newassoc()Stefan Sperling
function, not afterwards. Drivers now know whether a joining node supports HT which helps with setting up state such as which Tx rate to use.
2017-01-09Fix ieee80211_add_htop(), which is not yet called in active code paths.Stefan Sperling
It was creating a corrupt beacon element by ommitting one byte. Fix this and fill the element with actual data from the ic_bss node instead of filling it with zeroes, allowing future 11n hostap to announce the current HT protection mode correctly.
2017-01-09Sync with NetBSD/luna68k changes.Kenji Aoyama
>> Fix (mostly harmless) off-by-one size check in XPIOCDOWNLD ioctl. >> Consistently use sc_shm_size initialized at device attach. http://mail-index.netbsd.org/source-changes/2017/01/08/msg080666.html http://mail-index.netbsd.org/source-changes/2017/01/08/msg080667.html
2017-01-09i386 vmm requires PAE mode to be in use. don't match vmm(4) if ! PAE.Mike Larkin
2017-01-09Warnings and errors that occur during mdoc_validate()Ingo Schwarze
or during man_validate() have to affect the mandoc(1) EXIT STATUS. Many thanks to <Yuri dot Pankov at gmail dot com> (illumos developer) for reporting this regression.
2017-01-08Replace hand-rolled for(;;) traversal of ctl_conns TAILQ withKenneth R Westerback
TAILQ_FOREACH(). No intentional functional change. ok reyk@
2017-01-08Indentation must be measured in units of the surrounding text,Ingo Schwarze
not in units of the contained text. Consequently, "display" and "lit" class tags must not be on the same element: First, "display" must set up the indentation, still using the outer units, and only after that, "lit" may change the font. This fixes .Bd -literal which got the wrong indentation. Bug reported by tb@.
2017-01-08Revert previous commit as it failed to handle unset vmcs pointers properlyMike Larkin
noticed by Josh Grosse
2017-01-08Reduce "vmd -v" spam a bit by not printing useless exit information. TheseMike Larkin
were being printed because vmm(4) was in the middle of processing an exit that vmd(8) didn't care about, but still exited to vmd(8) because of a pending interrupt.
2017-01-08Sync log.c with the latest version from vmd/log.c that preserves errnoReyk Floeter
so it is safe calling log_* after an error without loosing the it.
2017-01-08Revert the addition of PROMOTE_MODE. This breaks libobjc; I guess theMiod Vallat
true reason of objc still being in-tree is to expose compiler issues.
2017-01-08Fix an assertion failure caused by \z\[u00FF] with -Tps/-Tpdf.Ingo Schwarze
Reported by jsg@ after an afl(1) run long ago.
2017-01-08Use a macro for the Tx timeout value.Visa Hankala
OK deraadt@ kettenis@
2017-01-08style: missing blank between case statement and label;Ingo Schwarze
from Tiago Silva <tiagofilipesilva at icloud dot com> long ago
2017-01-08Use makefs to build bsd.rd. ok deraadtMartin Natano
2017-01-08Add support for the RTC found on the Allwinner H3.Mark Kettenis
2017-01-08Specify correct size for the softc.Mark Kettenis
2017-01-08Make aml_rdpciaddr() work for for devices behind bridges. The code nowMark Kettenis
uses the mapping between AML nodes and PCI devices that we establish. Because _INIT methods may end up calling aml_rdpciaddr(), make sure we create that mapping early. Also handle devices that aren't actually present. These devices are now included in the mapping and reads will return an all-ones patterm whereas writes are a no-op.. ok mlarkin@
2017-01-08Display color depth alongside resolution when attaching inteldrm andFrederic Cambus
radeondrm, using the same scheme as efifb(4). OK mpi@, visa@, kettenis@
2017-01-08Make urtwn(4) use AMRR instead of letting the firmware handle rate scaling.Stefan Sperling
For now this only affects RTL8188EU chips, perhaps because the author of this patch does not own any devices containing any of the other chips (hint hint). Patch by misha aka Mikhail / mp39590 at gmail ok mpi@
2017-01-08When if_down() is called, sppp_keepalive() needs a NET_LOCK().Alexander Bluhm
OK visa@ mpi@
2017-01-08Tolerate bare tabs in SYNOPSIS .Cd for now.Ingo Schwarze
It's used in half a dozen pages. Even though i have been thinking about it for years, i still can't suggest anything better. The false positives are annoying.
2017-01-08delete three macro lines that have no effect, found with mandoc -TlintIngo Schwarze
2017-01-08add missing .An macrosIngo Schwarze
2017-01-08Stricter validation of the NAME section, in particular:Ingo Schwarze
- require a comma between names - reject all other text nodes - reject all empty Nm below NAME, not only in the leading position - reject Nm after Nd
2017-01-07Make getting the parent clock for the SD/MMC controller work on theMark Kettenis
Allwinner H3.
2017-01-07regenMike Larkin
2017-01-07Some newer Intel Xeon E5v4 PCI ids, from Hrvoje PopovskiMike Larkin
ok deraadt
2017-01-07add missing comma in the NAME sectionIngo Schwarze
2017-01-07fix commata in the NAME sectionIngo Schwarze
2017-01-07reduce statement nesting depth in a couple places, suggested byMike Larkin
Michael Bombardieri
2017-01-07add rcs tagsMike Larkin
2017-01-07use 16 bit segment selectors. also reduces differences with i386 vmmMike Larkin
2017-01-07fix a typo in an .Xr reported by jmc@Ingo Schwarze
2017-01-07syncTheo de Raadt
2017-01-07Fill bootstrap translation table with zeroes before we use it and don't mapMark Kettenis
the vectors page at address 0 as we don't put them there. ok patrick@
2017-01-07Add note about ccc and initc so people who want it can see it isNicholas Marriott
possible.
2017-01-07Add support for the OSC 4 and OSC 104 palette setting escape sequences,Nicholas Marriott
from S Gilles.
2017-01-07Add and remove some blank lines, in order to make X509_verify_cert()Joel Sing
(slightly) more readable.
2017-01-07-#endif /* !SMALL */Theo Buehler
+#endif /* !NOSSL */
2017-01-07Only install header files relevant for the architecture we're targeting.Mark Kettenis
ok patrick@, jsg@
2017-01-07a little more cleanup;Jason McIntyre
2017-01-07Revert part of r1.54 as there are at least two situations where we are stillJoel Sing
returning ok == 1, with ctx->error not being X509_V_OK. Hopefully we can restore this behaviour once these are ironed out. Discussed with beck@
2017-01-07Remove unused MIX_CN_CIN macro, make umidi_evlen[] static, style(9).Alexandre Ratchov
From Michael W. Bombardieri. Thanks.
2017-01-07correctly mark all documented macros found in <openssl/bn.h>Ingo Schwarze
2017-01-07Use .Fn rather than .Xr for X509_VERIFY_PARAM_lookup(),Ingo Schwarze
fixing a dead link reported by jmc@. Only about half of X509_VERIFY_PARAM is documented so far, and the extensible lookup table feels like one of the more arcane features and probably not the next thing to document.
2017-01-07Document X509_NAME_hash(3), listed in <openssl/x509.h>;Ingo Schwarze
jmc@ reported that X509_LOOKUP_hash_dir(3) references it. Even though OpenSSL does not document it, given that it is used for file names that users have to create, it is sufficiently exposed to users to be worth documenting.
2017-01-07Write a new manual page X509_STORE_load_locations(3) from scratch.Ingo Schwarze
Not documented by OpenSSL, but listed in <openssl/x509_vfy.h> and referenced from X509_LOOKUP_hash_dir(3), and clearly more important than the latter. Fixes three dead links reported by jmc@. Most of the information from SSL_CTX_load_verify_locations(3) should probably be moved here, but not all, since the SSL page also talks about SSL servers and clients and the like. As i'm not completely sure regarding the boundaries, i'm leaving that as it is for now.