created | 2024-04-06T21:03:44Z |
---|---|
begin | 2024-04-02T00:00:00Z |
end | 2024-04-03T00:00:00Z |
path | src/sys |
commits | 6 |
date | 2024-04-02T08:27:22Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/kern/sys_process.c | log | diff | annotate |
message | remove useless whitespace; from Jia Tan |
date | 2024-04-02T08:39:16Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/kern/exec_elf.c | log | diff | annotate |
src/sys/kern/exec_subr.c | log | diff | annotate | |
src/sys/kern/init_main.c | log | diff | annotate | |
src/sys/kern/kern_exec.c | log | diff | annotate | |
src/sys/sys/exec.h | log | diff | annotate | |
src/sys/sys/proc.h | log | diff | annotate | |
message |
Delete the msyscall mechanism entirely, since mimmutable+pinsyscalls has replaced it with a more strict mechanism, which happens to be lockless O(1) rather than micro-lock O(1)+O(log N). Also nop-out the sys_msyscall(2) guts, but leave the syscall around for a bit longer so that people can build through it, since ld.so(1) still wants to call it. |
date | 2024-04-02T08:39:17Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/uvm/uvm.h | log | diff | annotate |
src/sys/uvm/uvm_extern.h | log | diff | annotate | |
src/sys/uvm/uvm_map.c | log | diff | annotate | |
src/sys/uvm/uvm_map.h | log | diff | annotate | |
src/sys/uvm/uvm_mmap.c | log | diff | annotate | |
message |
Delete the msyscall mechanism entirely, since mimmutable+pinsyscalls has replaced it with a more strict mechanism, which happens to be lockless O(1) rather than micro-lock O(1)+O(log N). Also nop-out the sys_msyscall(2) guts, but leave the syscall around for a bit longer so that people can build through it, since ld.so(1) still wants to call it. |
date | 2024-04-02T12:21:39Z | |||
---|---|---|---|---|
author | mvs | |||
files | src/sys/kern/uipc_socket.c | log | diff | annotate |
message |
Remove wrong "temporary udp error" comment in filt_so{read,write}(). Not only udp(4) sockets set and check `so_error'. No functional changes. ok bluhm |
date | 2024-04-02T14:23:15Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/kern/uipc_socket.c | log | diff | annotate |
message |
Implement SO_ACCEPTCONN in getsockopt(2) Requested by robert@ OK mvs@ millert@ deraadt@ |
date | 2024-04-02T20:59:48Z | |||
---|---|---|---|---|
author | jan | |||
files | src/sys/dev/pci/if_vmx.c | log | diff | annotate |
message |
Implement and enable TSO in vmx(4) Tested with IPv4/IPv6 and vlan(4). ok jmatthew@ |