created | 2022-11-06T04:04:25Z |
---|---|
begin | 2022-11-03T00:00:00Z |
end | 2022-11-04T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2022-11-03T04:52:41Z | |||
---|---|---|---|---|
author | guenther | |||
files | src/sys/kern/kern_xxx.c | log | diff | annotate |
message |
Make scdebug_ret() behave like ktrsysret(), showing the off_t value for lseek() and a single register_t value for all others. ok miod@ |
date | 2022-11-03T04:56:47Z | |||
---|---|---|---|---|
author | guenther | |||
files | src/sys/dev/rnd.c | log | diff | annotate |
src/sys/kern/kern_exit.c | log | diff | annotate | |
message |
Style: always use *retval and never retval[0] in syscalls, to reflect that retval is just a single return value. ok miod@ |
date | 2022-11-03T17:41:22Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/arch/arm64/conf/RAMDISK | log | diff | annotate |
message |
Enable smbios0 on arm64 RAMDISK so the code mitigating crashes on the x13s gets correct info from hw.version. |
date | 2022-11-03T23:26:49Z | |||
---|---|---|---|---|
author | jca | |||
files | src/sys/arch/riscv64/riscv64/pmap.c | log | diff | annotate |
message |
Zap unused variable ok kettenis@ |
date | 2022-11-03T23:30:55Z | |||
---|---|---|---|---|
author | jca | |||
files | src/sys/arch/riscv64/riscv64/pmap.c | log | diff | annotate |
message |
riscv64 pmap: flush memory writes before remote sfence.vma As pointed out by the RISC-V privileged spec. Sadly this is not enough to solve all existing userland or kernel crashes seen on Unmatched (and possibly other?) machines. ok kettenis@ |