created | 2024-01-25T00:06:17Z |
---|---|
begin | 2024-01-17T00:00:00Z |
end | 2024-01-18T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2024-01-17T06:28:15Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/pci/drm/i915/i915_driver.c | log | diff | annotate |
message | unstub i915_driver_hw_remove() |
date | 2024-01-17T18:56:13Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/kern/kern_exec.c | log | diff | annotate |
message |
Since pinsyscalls(2) applies to all system calls and does a more precise check earlier, the pinsyscall(SYS_execve mechanism has become redundant. It needs to be removed delicately since ld.so and static binaries use it. As a first step, neuter the checking code in sys_execve(). Further steps will follow slowly. ok kettenis |
date | 2024-01-17T22:22:25Z | |||
---|---|---|---|---|
author | kurt | |||
files | src/sys/kern/exec_elf.c | log | diff | annotate |
src/sys/kern/kern_sig.c | log | diff | annotate | |
src/sys/sys/core.h | log | diff | annotate | |
src/sys/sys/exec_elf.h | log | diff | annotate | |
src/sys/uvm/uvm_extern.h | log | diff | annotate | |
src/sys/uvm/uvm_unix.c | log | diff | annotate | |
message |
Fix core file writing when a file map into memory has later been truncated to be smaller than the mapping. Record which memory segments are backed by vnodes while walking the uvm map and later suppress EFAULT errors caused by the underlying file being truncated. okay miod@ |