created | 2023-05-13T20:51:38Z |
---|---|
begin | 2023-05-09T00:00:00Z |
end | 2023-05-10T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2023-05-09T10:13:23Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/dev/aplcpu.c | log | diff | annotate |
message |
Apparently there is no need to set the PS2 field. ok patrick@ |
date | 2023-05-09T10:35:20Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/uvm/uvm_mmap.c | log | diff | annotate |
message |
Inline once-used variable to sync all uvm_map_clean() callers OK mpi |
date | 2023-05-09T14:22:17Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/kern/sys_generic.c | log | diff | annotate |
src/sys/kern/sys_pipe.c | log | diff | annotate | |
message |
Don't return EPIPE from pipe kqfilter Proceed with the registration of an EVFILT_WRITE filter even if the pipe's other end has been closed, instead of failing with error EPIPE. The filter will trigger immediately. This reduces the possible outcomes when a kevent(2) call and a close(2) call race on the different ends of a pipe. This fixes a failure of lang/ghc unit test as reported by gnezdo@. OK gnezdo@ mpi@ |