summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-08-30use a mixture of .Dl and .Bd -compact to reduce the amount ofJason McIntyre
vertical whitespace, making it easier to see which hostname.if file relates to which example;
2016-08-30Make sure to not decrease packet size when running with -v.Florian Obser
OK benno
2016-08-30Terminate daemon using the socket status instead of watching SIGCHLD orRafael Zalamena
kill()ing child process. "Looks good to me" millert@ ok benno@
2016-08-30does not need sys/param.hTheo de Raadt
2016-08-30Remove duplicated prototypes from header.Rafael Zalamena
"Looks good to me" natano@
2016-08-30Move DT_NUM from <sys/exec_elf.h> to resolv.h in ld.so where it belongs.Mark Kettenis
ok guenther@
2016-08-30Make the init code match the comment and disable watchdogJonathan Gray
reset by mouse and keyboard instead of mouse and mouse.
2016-08-30Mask sb pci irq bits for a,b,c,d instead of a,b,b,d.Jonathan Gray
Couldn't find someone with a loongson 2e to test this on hardware. "looks ok" visa@
2016-08-30usage() is __dead.Florian Obser
While here remove one useless call to usage() that's covered by the very next line.
2016-08-30buf[][] with strange use all over the place is ridiculous, especiallyTheo de Raadt
if buf[1] is never used. ok guenther beck
2016-08-30Fix 32-bit time handling, using time_t and make it work on systemsTheo de Raadt
where that is long long. ok beck guenther
2016-08-30Properly set "msb" and "bps" fields for both play and rec directions.Alexandre Ratchov
Fixes "audio0: different play and record parameters ... " errors, and probably other unreported errors. help and ok landry@
2016-08-30Add destination IP to MAC, reduces difference to ping(8).Florian Obser
2016-08-30Do not assume that the full http response header is in the firstFlorian Obser
fastcgi stdout record. Keep processing stdout records until we found the header / body separator and only then generate the header response. Problem reported by many. OK jung@
2016-08-30shorten rsautl;Jason McIntyre
2016-08-30restrict monitor auth calls to be allowed only when theirDamien Miller
respective authentication methods are enabled in the configuration. prompted by Solar Designer; ok markus dtucker
2016-08-30use a per-table rwlock to serialize ART updates and walks, rather thanJonathan Matthew
taking the kernel lock. ok mpi@ dlg@
2016-08-30pool_setiplDavid Gwynne
ok natano@
2016-08-30pool_setipl for nfs poolsDavid Gwynne
ok natano@
2016-08-29Change le(4) buffer address to 0x71010000, which is the same addressKenji Aoyama
with NetBSD/luna68k. LUNA has 128KB so-called '3 port RAM' starting at 0x71000000. Originally, first 64KB of this area is designed for I/O processor HD647180, and next 64KB is designed for LANCE. This makes possible to support I/O processor in the future:-)
2016-08-29Syslogd tls config error messages have changed, adapt tests.Alexander Bluhm
2016-08-29Add more information to syslogd tls config error messages.Alexander Bluhm
OK millert@
2016-08-29Set MTU size to ~4k until the TX path is ready to deal with larger packetsMike Belopuhov
2016-08-29Don't count output errors twiceMike Belopuhov
2016-08-29Make socket splicing performance test pass in multiple environments.Alexander Bluhm
When running the setup over two machines, build required binaries on remote machine. Avoid localhost nameserver lookup, just use 127.0.0.1. Use greater timeout.
2016-08-29Fixup packet fragment unrolling procedureMike Belopuhov
When bus_dmamap_load fails to load one of the buffers in the mbuf chain, we need to revert all changes to transmit descriptors. The code to do that was prototyped but not tested. However due to how the Tx ring is set up in xnf(4) and generic lack of proper fragment support in the Netfront design we're always limited to having 256 entries for distinct shared memory pages. The mbuf chain is traversed and attempt is made to load every data chunk into a 4k sized DMA map segment which makes it impossible to reference a buffer composed of multiple pages. Current implementation lacks support for this preventing reliable transmission of frames larger than 4k. Bug reported by Kirill Miazine <km at krot ! org>, thanks!
2016-08-29Store the return value of mbrtowc() in a size_t, not int.Todd C. Miller
OK schwarze@
2016-08-29Make examples fit in 80 columns, reminded by jmc@Martin Pieuchot
2016-08-28fix uninitialised optlen in getsockopt() call; harmless on Unix/BSDDamien Miller
but potentially crashy on Cygwin. Reported by James Slepicka ok deraadt@
2016-08-28Get rid of sxipio_ioh and sxipio_iot; they're not used (anymore).Mark Kettenis
2016-08-28Add a few missing sunxi-h3 clocks and resets.Mark Kettenis
2016-08-28shorten the rsa text; of note, i've also reduced the descriptionJason McIntyre
for -inform/-outform/-text and removed the oft-repeated header/footer blurb;
2016-08-28Fix the macros that determine the register offsets based on port and pin.Mark Kettenis
These were didn't work as I expected, and returned the wrong offsets. As a result, pinctrl and gpio code was twiddling the wrong bits.
2016-08-28If a line inside .Bl -column starts with a tab characterIngo Schwarze
and there was no preceding .It macro, do not read the byte before the beginning of the line buffer. Found by tb@ with afl@.
2016-08-28Reset the host controller after a failed command request to make sure itMarcus Glocker
operates again. ok kettenis
2016-08-28typoIngo Schwarze
2016-08-28I don't dare to provide an OK for a rewrite of this programIngo Schwarze
without having at least some systematic testing in place.
2016-08-28Check the MORE (or LESS) environment variables after forcing the variousNicholas Marriott
more(1) options, so it is possible to change them using MORE. From Ross L Richardson. ok deraadt millert
2016-08-28Remove obsolete gre(4) ioctls GRESADDRS, GRESADDRD, GREGADDRS,Reyk Floeter
GREGADDRD, GRESPROTO, and GREGPROTO. They have been replaced by generic ioctls some time ago (eg. the "ifconfig gre0 tunnel") and there is no need to keep the old ones around. They are neither used in base nor in ports. OK sthen@
2016-08-28ld.so doesn't need gettimeofday or lstat stubs any morePhilip Guenther
ok deraadt@
2016-08-28fix a commentPhilip Guenther
2016-08-28Don't call lstat() before readlink() just to see if it's a symlink,Philip Guenther
as readlink() will tell you that more cheaply. ok millert@
2016-08-28Pull in <time.h> for tzset()Philip Guenther
2016-08-27Kill empty window after moving pane and updating current window, so thatNicholas Marriott
index is still valid before renumber-windows happens. Fixes issue reported by Eric Pruitt.
2016-08-27Delete debugging from when lazy binding was being implementedPhilip Guenther
ok deraadt@
2016-08-27further tweak previous: use the same text for norw as ro; ok teduJason McIntyre
2016-08-27shorten the req text;Jason McIntyre
2016-08-27for completeness, document (no)rw and ro options.Ted Unangst
2016-08-27in case we run delete_first (not enough room), delay the unlink ofMarc Espie
tied items so we can still skip extracting them. better than the stopgap measure I committed a few weeks ago.
2016-08-27Deassert reset signals if there is a "resets" property. Implement mmc powerMark Kettenis
sequencing like we have for imxesdhc(4). Unfortunately that doesn't seem to be enough to be able to see the onboard sdio wireless on my Banana Pi 2+.