created | 2023-09-29T17:50:16Z |
---|---|
begin | 2023-09-24T00:00:00Z |
end | 2023-09-25T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2023-09-24T05:56:06Z | |||
---|---|---|---|---|
author | yasuoka | |||
files | src/sys/net/if_wg.c | log | diff | annotate |
message |
The stage queue should be freeed when wg_peer is destroyed. diff from IIJ. ok bluhm mvs |
date | 2023-09-24T12:27:16Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/kern/kern_clockintr.c | log | diff | annotate |
message | kern_clockintr.c: remove extra newline |
date | 2023-09-24T18:49:29Z | |||
---|---|---|---|---|
author | jca | |||
files | src/sys/arch/riscv64/riscv64/pmap.c | log | diff | annotate |
message |
Drop PTE check in pmap_fault_fixup(). Since pmap_enter() doesn't add PTE's for pages that haven't been accessed yet, the check would skip the fixup on such pages and force us to go through uvm_fault() just for the sake of MOD/REF bit emulation. Since we already check the PTE descriptor, dropping the check should be safe. Doing so gives us a nice 10% performance gain when building a kernel. Original commit for arch/arm64/arm64/pmap.c: date: 2021/05/16 17:41:30; author: kettenis; state: Exp; lines: +1 -8; commitid: yBzyZzIKRLyAkuDY; ok drahn@ kettenis@ |