Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-09 | Add "PNP0303" (8042 PS/2 Controller) to acpi_isa_hids[] | David Coppa | |
ok kettenis@ | |||
2017-08-09 | add mail.mda MDA in charge of running a third-party MDA, not linked yet | Gilles Chehade | |
2017-08-09 | at the exception of mail.local, smtpd never executes an MDA as root. | Gilles Chehade | |
the check is performed daemon-side before even forking the child process, but let's also check euid in the mda we ship in case someone executes them by hand and needs to see an explicit error message. | |||
2017-08-09 | We are no longer processing router advertisements in the | Florian Obser | |
kernel. OK mpi | |||
2017-08-09 | switch the order of substitutions for syspatch object file order to avoid | Robert Nagy | |
deleting ../ in the path | |||
2017-08-09 | Fix format strings to make the kernel build on arm64 again after the | Jonathan Gray | |
recent kprintf changes in clang. ok deraadt@ kettenis@ | |||
2017-08-09 | fix format strings | Jonathan Gray | |
ok kettenis@ | |||
2017-08-09 | remove duplicated PAGE macros and drop type suffix | Jonathan Gray | |
ok kettenis@ | |||
2017-08-08 | Arm64 compilers like many others anymore will use floating point registers | Dale Rahn | |
for non-foating point data, so it is important that FPU state be saved and restored when a signal is delivered. This diff that performs a save and restore of all of the floating point registers (not just the callee save registers). It is added to sigcode running in userland instead of into the kernel with copyin()/copyout() similar to the code in powerpc (macppc) locore.S | |||
2017-08-08 | fix typo in previous commit. | T.J. Townsend | |
2017-08-08 | Stop running nd6_expire every second. | Florian Obser | |
We know when pltime or vltime decrease to zero. Run nd6_expire then. Input & OK mpi, bluhm | |||
2017-08-08 | Rename resolv_conf_priority() to default_route_index() to | Kenneth R Westerback | |
reflect what it does. | |||
2017-08-08 | Mandoc no longer uses names that only occur in the SYNOPSIS. | Alexander Bluhm | |
Adapt test. OK schwarze@ | |||
2017-08-08 | KNF some long lines. | Kenneth R Westerback | |
2017-08-08 | Mention supported Aten UC232A adapter. | anton | |
ok deraadt@ jca@ jmc@ | |||
2017-08-08 | Get rid of read_psl() and write_psl() by replacing | Visa Hankala | |
read_psl() + disable_intr() with intr_disable(), and write_psl() with intr_restore(). OK kettenis@ | |||
2017-08-08 | Kernel sendsyslog(2), libc syslog(3), and syslogd(8) restrict and | Alexander Bluhm | |
truncate the length of a syslog message to 8192 bytes. Use one global define LOG_MAXLINE for all of them. OK deraadt@ millert@ | |||
2017-08-08 | Use configtest as one word like other network daemon man pages. | rob | |
Ok benno@, jmc@ | |||
2017-08-08 | Consistent use of log.c, and removal of err.h include. Makes ifstated | rob | |
configtest output the same as other networking daemons. Ok jca@ | |||
2017-08-08 | Increase the limit of the IP protocol queues from 256 to 2048 mbufs. | Alexander Bluhm | |
The interface congestion algorithm kills performance at this place, with the large queues it never triggers. OK mpi@ claudio@ | |||
2017-08-08 | Hooks for after-select-pane and after-select-window. | Nicholas Marriott | |
2017-08-08 | Do not forget to reschedule the timer when we receive a new prefix. | Jeremie Courreges-Anglas | |
This way the new prefix can be advertized asap. ok florian@ | |||
2017-08-08 | Fix a bug introduced in r1.1028 while switching enable_network() | Robert Peichaer | |
from _hn to _if. Found by Pontus Lundkvist | |||
2017-08-07 | Since sendsyslog(2) handles the LOG_CONS parameter, the variable | Alexander Bluhm | |
conp in syslog(3) is unused. Remove dead code. OK jca@ deraadt@ | |||
2017-08-07 | Add RK3399 USB3 related clocks. | Mark Kettenis | |
2017-08-07 | Return WSDISPLAY_TYPE_PCIVGA like we do on macppc. | Mark Kettenis | |
Pointed out by jsg@ | |||
2017-08-07 | Clang does not support -ffloat-store, so libm fenv test failed on | Alexander Bluhm | |
i386. Gcc uses this option it to store x87 registers to memory. This reduces precision and enforces rounding which this test checks. The same effect can be achieved by using a volatile double variable for the result. This works for both compilers. OK kettenis@ | |||
2017-08-07 | Add "machine exit" and "machine poweroff" commands to the arm64 and armv7 | Mark Kettenis | |
bootloaders. Replace while (1) { } with for (;;) continue; per request from tom@. ok tom@, jsg@ | |||
2017-08-07 | Actually enable the kprintf format attribute. | Mark Kettenis | |
ok florian@ | |||
2017-08-07 | Silence most clang warnings in ld.so regress. | Alexander Bluhm | |
OK kettenis@ | |||
2017-08-07 | Turns out gcc complains about %02hhx. So simply use %02x instead. This is | Mark Kettenis | |
accepted by both clang and gcc and safe given that varargs arguments are promoted to int anyway. Using %h in the kernel is discouraged anyway according to bluhm@. Unbreaks the tree on gcc architectures. ok pirofti@, bluhm@, florian@ | |||
2017-08-07 | In pf.conf the icmp6-type notnbr-unr has been renamed to beyond-unr. | Alexander Bluhm | |
Adapt regress test. | |||
2017-08-07 | Remove obsolete privsep=no fallback test. | Darren Tucker | |
2017-08-07 | Remove non-privsep test since disabling privsep is now deprecated. | Darren Tucker | |
2017-08-06 | Simplify logic seeking/checking the interface over | Kenneth R Westerback | |
which the current default route exits. If the dhclient instance owns that interface it owns resolv.conf and will overwrite it no matter who created the default route. Feedback & suggestions claudio@ | |||
2017-08-06 | use %Lf for printing long double; silences clang warning | Robert Nagy | |
ok kettenis@ | |||
2017-08-06 | Fix TCR definitions to avoid integer overflow. Rename TCR_ASID_16 to TCR_AS | Mark Kettenis | |
to match the official ARM docs. ok patrick@, tom@ | |||
2017-08-06 | Use %hhx instead of %hx to print u_char. Silences clang warning. | Mark Kettenis | |
ok jca@, florian@ | |||
2017-08-06 | Improve error checking during processing of routing messages. Handling of | rob | |
RTM_DESYNC encouraged by deraadt. ok jca@ benno@ | |||
2017-08-06 | packet.c and parse.y no longer require err.h. ok jca@ florian@ | rob | |
2017-08-06 | Prevent a use-after-free by always passing dynamically allocated | Martin Pieuchot | |
arguments to f_key_v2_connection_check(). The race can be triggered by sending SIGHUP to the daemon. Note that this change do not fix the memory leak if exchange_establish() fails. Reported by MichaÅ Koc. ok hshoexer@, markus@, henning@ | |||
2017-08-06 | Remove comma from last element since that is the terminator. | Claudio Jeker | |
2017-08-06 | Reduce contention on the NET_LOCK() by moving the logic of the pfpurge | Martin Pieuchot | |
thread to a task running on the `softnettq`. Tested and inputs from Hrvoje Popovski. ok visa@, sashan@ | |||
2017-08-06 | Reduce contention on the NET_LOCK() by moving the nd6 address expiration | Martin Pieuchot | |
task to the `softnettq`. While here update comments and names to reflect reality after the removal of router and prefix lists. ok florian@, bluhm@ | |||
2017-08-06 | add a zeroed out element at the end of the iana_ext_comms array, so | Sebastian Benoit | |
that the iteration over it actually stops. ok and feedback from florian@ phessler@ and claudio@ | |||
2017-08-06 | add ASIX AX99100 description | SASANO Takayoshi | |
ok by jmc@ | |||
2017-08-06 | a long time ago, we made a change to the format of envelopes and introduced | Gilles Chehade | |
a function to upgrade from v1 to v2 on the fly. this was meant to stay just for the transition in one release. 3 years and 8 months later, it's finally time we remove it ;-) ok eric@, sunil@ | |||
2017-08-06 | in6_leavegroup can't fail; OK phessler | Florian Obser | |
2017-08-06 | Xr octeon interrupt controller drivers. | Visa Hankala | |
2017-08-06 | Present the default choice before the colon in prompts. Matches GNU Emacs | Brian Callahan | |
behavior. From Scott Cheloha <scottcheloha@gmail.com> ok florian@ |