created | 2019-01-12T16:08:06Z |
---|---|
begin | 2019-01-03T00:00:00Z |
end | 2019-01-04T00:00:00Z |
path | src/sys |
commits | 7 |
date | 2019-01-03T00:59:58Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/dev/fdt/if_dwxe.c | log | diff | annotate |
message |
if we run out of mbufs for the rx ring, run a timeout to refill them claudio@ (i think) hit this a while back, and i've had this diff in my tree since then. i'm putting it in now since it empirically solved the problem and im sick of carrying the diff around. |
date | 2019-01-03T08:46:40Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/netinet/ip_output.c | log | diff | annotate |
message |
Replace a funky 'else switch' construct into something that is equal but a lot easier to read. The if can simply return the error and so the else branch is no longer needed. Input and OK dhill@ |
date | 2019-01-03T08:56:53Z | |||
---|---|---|---|---|
author | anton | |||
files | src/sys/dev/kcov.c | log | diff | annotate |
message | Favor ENOTTY for unknown ioctl commands. |
date | 2019-01-03T17:06:22Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/arch/octeon/dev/octcrypto_asm.S | log | diff | annotate |
message |
Fix .end symbol. From Mikhael Skvortsov |
date | 2019-01-03T18:59:27Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/amd64/include/vmparam.h | log | diff | annotate |
message |
Crank MAXTSIZ to next pow2 (256MB) because a few piggy binaries compiled with retpoline enabled are even piggier now. diagnosed with robert kettenis and drahn |
date | 2019-01-03T21:52:31Z | |||
---|---|---|---|---|
author | beck | |||
files | src/sys/kern/kern_unveil.c | log | diff | annotate |
src/sys/kern/vfs_lookup.c | log | diff | annotate | |
src/sys/kern/vfs_syscalls.c | log | diff | annotate | |
src/sys/sys/proc.h | log | diff | annotate | |
message |
Fix a collection of covering unveil bugs that prevent unveil's of upper level directories from working when you don't traverse into them starting from /. Most found by brynet@ and a few others. ok brynet@ deraadt@ |
date | 2019-01-03T23:04:51Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/arch/arm64/dev/simplebus.c | log | diff | annotate |
message |
add a simplebus print function so unconfigured devices appear in dmesg. this was avoided previously because during the early stages of the port, there were mostly unsupported devices. the situation is a bit better now, so make the missing drivers more obvious so people can get interested. ok kettenis@ |