created | 2023-01-29T08:55:08Z |
---|---|
begin | 2023-01-22T00:00:00Z |
end | 2023-01-23T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2023-01-22T12:05:44Z | |||
---|---|---|---|---|
author | mvs | |||
files | src/sys/kern/kern_sysctl.c | log | diff | annotate |
src/sys/kern/sys_socket.c | log | diff | annotate | |
src/sys/kern/uipc_socket.c | log | diff | annotate | |
src/sys/kern/uipc_socket2.c | log | diff | annotate | |
src/sys/kern/uipc_syscalls.c | log | diff | annotate | |
src/sys/miscfs/fifofs/fifo_vnops.c | log | diff | annotate | |
src/sys/net/rtsock.c | log | diff | annotate | |
src/sys/netinet/raw_ip.c | log | diff | annotate | |
src/sys/netinet/tcp_input.c | log | diff | annotate | |
src/sys/netinet/tcp_usrreq.c | log | diff | annotate | |
src/sys/netinet/udp_usrreq.c | log | diff | annotate | |
src/sys/netinet6/raw_ip6.c | log | diff | annotate | |
src/sys/sys/socketvar.h | log | diff | annotate | |
message |
Move SS_CANTRCVMORE and SS_RCVATMARK bits from `so_state' to `sb_state' of receive buffer. As it was done for SS_CANTSENDMORE bit, the definition kept as is, but now these bits belongs to the `sb_state' of receive buffer. `sb_state' ored with `so_state' when socket data exporting to the userland. ok bluhm@ |
date | 2023-01-22T13:14:21Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/dev/apm.c | log | diff | annotate |
src/sys/arch/arm64/include/apmvar.h | log | diff | annotate | |
message |
Simplify the (so far unused) apm_record_event() function a bit and use it to send a resume event to userland when we come out of suspend. ok deraadt@ |
date | 2023-01-22T18:36:38Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/arch/armv7/omap/gptimer.c | log | diff | annotate |
message | gptimer(4): remove dead MD microtime(9) implementation |
date | 2023-01-22T23:05:51Z | |||
---|---|---|---|---|
author | yasuoka | |||
files | src/sys/net/pf.c | log | diff | annotate |
message |
Fix pf_anchor_stackframe commit to revert pf rule matching to the previous behavior that stops when any rule matches within quick anchors. ok sasha kn |