Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-15 | do not use CRLF when passing data lines to filters. | Eric Faurot | |
ok gilles@ | |||
2019-05-15 | Add the -m flag to the ftp.1 man page. | kmos | |
Adjust the usage message of ftp(1) to reflect its two operating modes and list missing flags. OK florian@ jmc@ | |||
2019-05-15 | delete some duplicate words | Ingo Schwarze | |
2019-05-15 | re-indent bwscoll() after previous commit; no binary change | Ingo Schwarze | |
2019-05-15 | s3 is never NULL since s2 (formerly used for SSLv2) does not exist, so there is | Brent Cook | |
no need to check for it. Fixes COV-165788, identified with help from Alex Bumstead. ok jsing@ | |||
2019-05-15 | Cleanup: | Ingo Schwarze | |
Delete handling of LC_COLLATE (which has no effect) and delete support for non-ASCII single-byte encodings, allowing to replace the condition byte_sort == 1 with sort_mb_cur_max == 1. Since none of our single-byte character and string functions are locale dependent, also zap inspection of LC_CTYPE while here. For know, keep the code supporting multi-byte encodings even though it is very ugly, it cannot be reached right now, and we have no plans to enable it any time soon. OK millert@ tb@ | |||
2019-05-15 | remove some use of uninitialized values pointed out by jsg@ | Jonathan Matthew | |
2019-05-15 | Rework tx path to allow using up to 13 segments per packet, so we don't | Jonathan Matthew | |
have to defrag everything. While working on this I discovered both of the tx doorbells can be rung once per mcx_start() call, rather than once per packet. dlg@ helped a lot by making me read the documentation again. | |||
2019-05-15 | Add support to the BIOS bootloader for random kernel base VA | Mike Larkin | |
This diff adds support to be able to load a randomly linked kernel VA (subject to some range restrictions). This change has been in snaps for a few days without any fallout. ok deraadt@ | |||
2019-05-15 | free size for amap; ok visa@ | anton | |
2019-05-15 | normalize newlines when reading the message | Eric Faurot | |
spotted by martijn@ ok martijn@ gilles@ | |||
2019-05-15 | When doing the fork+exec'ing for ssh-keysign, rearrange the socket | Theo de Raadt | |
into fd3, so as to not mistakenly leak other fd forward accidentally. ok djm | |||
2019-05-15 | Reduce branch emulation page access protection during setup. The setup | Visa Hankala | |
stage does not need execute access, so map the page initially with read-write protection. OK miod@ | |||
2019-05-15 | Drop redundant pmap_proc_iflush() call. The needed instruction cache | Visa Hankala | |
invalidation is done by mips64 pmap when the branch emulation page is made executable. Originally, the pmap_proc_iflush() call was necessary. The instruction cache invalidation was added in pmap_protect() after the FPU emulation was introduced. OK miod@ | |||
2019-05-15 | sync | rob | |
2019-05-15 | Split ber.3 into logical parts. Further tweaking will be done in tree. | rob | |
Discussed with and ok jmc@, schwarze@, claudio@ | |||
2019-05-14 | Fix athn(4) 9280 1T2R devices; broken since my noisefloor calib commit | Stefan Sperling | |
Problem reported and fix tested by Stephane Guedon ok jca@ mpi@ | |||
2019-05-14 | test different buffer sizes | anton | |
2019-05-14 | do not intermingle direct io (write), and potentially buffered io (stdio) | Theo de Raadt | |
against the same outputs ok kmos florian | |||
2019-05-14 | Document -v | Florian Obser | |
2019-05-14 | -v forces verbose mode even if stdin is not a terminal | Florian Obser | |
Found the hard way by bluhm Debugged with deraadt & bluhm | |||
2019-05-14 | make "bgpctl sh rib detail *out*" look less confusing | Sebastian Benoit | |
ok claudio@ | |||
2019-05-14 | Remove the REGRESS_MAXTIME feature from regress framework. The | Alexander Bluhm | |
timeout based on CPU seconds is pretty useless, most hanging tests sleep and do not spin. The timeout could not be distinguished from failure. Only 3 tests used it. OK anton@ schwarze@ cheloha@ otto@ | |||
2019-05-14 | Correct missing test to determine if length is in bytes or in bits. | Bob Beck | |
Issue found by Guido Vranken <guidovranken@gmail.com> ok tedu@ tb@ | |||
2019-05-14 | Add free(9) sizes to ahc(4) | jan | |
From Miod OK tedu@ | |||
2019-05-14 | document CONFIGURE_STYLE=autoreconf; ok espie@ | Christian Weisgerber | |
2019-05-14 | Move common config passing code into a function. | Florian Obser | |
OK pamela | |||
2019-05-14 | Revert my recent sysupgrade changes; it broke unattended upgrades for | Antoine Jacoutot | |
espie@. Need to look deeper. | |||
2019-05-14 | armv7 and arm64 also have ci_idepth | Jonathan Gray | |
ok anton@ | |||
2019-05-14 | allow specifying a cmdfile instead of trying to pipe in commands for -ef. | Ted Unangst | |
ok deraadt | |||
2019-05-14 | minor macro cleanup | Ingo Schwarze | |
2019-05-14 | minor wording improvement from Stephen Gregoratto | Ingo Schwarze | |
2019-05-14 | Delete some .Sx macros that were used in a wrong way. | Ingo Schwarze | |
Part of a patch from Stephen Gregoratto <dev at sgregoratto dot me>. | |||
2019-05-14 | fix typos in log messages | Eric Faurot | |
2019-05-14 | Fix sizing of main-vertical and main-horizontal layouts, GitHub issue 1736. | Nicholas Marriott | |
2019-05-14 | Add support for `boot device' to vm.conf grammar which is the `-B device' | anton | |
counterpart from vmctl. ok mlarkin@ | |||
2019-05-14 | Enable TLSv1.0 and TLSv1.1 | Jeremie Courreges-Anglas | |
Like the old ftp. Discussed with at least with tedu@ "We should match existing behavior at least for now" | |||
2019-05-14 | Use propper regress target to integrate better into test framework. | Alexander Bluhm | |
2019-05-14 | Add lock order checking for smr_barrier(9). This is similar to the | Visa Hankala | |
checking done in taskq_barrier(9) and timeout_barrier(9). OK mpi@ | |||
2019-05-14 | Remove leftover elf.c | Sunil Nimmagadda | |
2019-05-14 | Use elf(3) api instead of an ad-hoc elf parser. | Sunil Nimmagadda | |
Ok mpi@ | |||
2019-05-14 | Remove an unused and leftover label. | Sunil Nimmagadda | |
2019-05-14 | tls_write(3): Handle short writes. | Sunil Nimmagadda | |
Ok jca@ | |||
2019-05-13 | Add tee(1) to the ramdisk filesystem and use it to provide both a | Christian Weisgerber | |
moving progress bar during auto upgrade/install and a clean log afterwards. ok deraadt@ | |||
2019-05-13 | Remove strict mode for now, it is in the way. | Florian Obser | |
2019-05-13 | print a newline for attach. from f holop | Ted Unangst | |
2019-05-13 | Add a kernel implementation of realpath() as __realpath(). | Bob Beck | |
We want this so that we can stop allowing readlink() on traversed vnodes in unveil(). This includes all the kernel side and the system call. This is not yet used in libc for realpath, so nothing calls this yet. The libc wrapper will be committed later. Testing by many, and ports build by naddy@ ok deraadt@ | |||
2019-05-13 | Remove unused pad check, which is handled by tls1_cbc_remove_padding() now. | Brent Cook | |
Fixes COV-174858 ok tb@ | |||
2019-05-13 | Acquire mutex before incrementing the refcount. Fixes COV-186144 | Brent Cook | |
ok tb@ | |||
2019-05-13 | Add missing word in comment. | Theo Buehler | |