created | 2022-08-14T03:16:56Z |
---|---|
begin | 2022-08-11T00:00:00Z |
end | 2022-08-12T00:00:00Z |
path | src/sys |
commits | 8 |
date | 2022-08-11T02:56:34Z | |||
---|---|---|---|---|
author | tb | |||
files | src/sys/lib/libz/zlib.h | log | diff | annotate |
message |
Revert uLong -> z_off_t change in the kernel The kernel source assumes the original zlib ABI. There is no reason to stick to this local change. Pull in a fix matching ctfdump.c -r1.26. This is hopefully the last change necessary to undo a painful hack that was committed 19 years ago without ok. Someone owes me a lot of beer... ok millert |
date | 2022-08-11T02:56:35Z | |||
---|---|---|---|---|
author | tb | |||
files | src/sys/ddb/db_ctf.c | log | diff | annotate |
message |
Revert uLong -> z_off_t change in the kernel The kernel source assumes the original zlib ABI. There is no reason to stick to this local change. Pull in a fix matching ctfdump.c -r1.26. This is hopefully the last change necessary to undo a painful hack that was committed 19 years ago without ok. Someone owes me a lot of beer... ok millert |
date | 2022-08-11T07:32:57Z | |||
---|---|---|---|---|
author | anton | |||
files | src/sys/dev/usb/uhidpp.c | log | diff | annotate |
message | Remove prefix from nested battery struct fields. |
date | 2022-08-11T09:13:21Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/kern/kern_pledge.c | log | diff | annotate |
src/sys/netinet/tcp.h | log | diff | annotate | |
src/sys/netinet/tcp_input.c | log | diff | annotate | |
src/sys/netinet/tcp_output.c | log | diff | annotate | |
src/sys/netinet/tcp_usrreq.c | log | diff | annotate | |
src/sys/netinet/tcp_var.h | log | diff | annotate | |
message |
Add TCP_INFO support to getsockopt for tcp sessions. TCP_INFO provides a lot of information about the TCP session of this socket. Many processes like to peek at the rtt of a connection but this also provides a lot of more special info for use by e.g. tcpbench(1). While the basic minimal info is available all the time the more specific data is only populated for privileged processes. This is done to not share data back to userland that may allow to attack a session. TCP_INFO is available to pledge "inet" since pledged processes like chrome tend to use TCP_INFO when available. OK bluhm@ |
date | 2022-08-11T09:22:38Z | |||
---|---|---|---|---|
author | anton | |||
files | src/sys/dev/usb/ucc.c | log | diff | annotate |
message | Revert previous commit as the bounds check was correct. |
date | 2022-08-11T14:49:42Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/arch/arm64/dev/smmu_acpi.c | log | diff | annotate |
message |
Don't yet configure smmu(4) on Qualcomm SoCs as used on the Lenovo x13s as it is still not ready for runtime use and probably needs further quirks. Discussed with deraadt@ |
date | 2022-08-11T17:15:21Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/arch/powerpc64/powerpc64/clock.c | log | diff | annotate |
message |
powerpc64: cpu_initclocks: do tc_init(9) before cpu_startclock() In the future, the clock interrupt will need a working timecounter to accurately reschedule itself. Move tc_init(9) up before cpu_startclock(). kettenis@ notes several other platforms need this same change. Maybe we can do the rest all at once. Tested by kettenis@. Link: https://marc.info/?l=openbsd-tech&m=165343754512382&w=2 ok kettenis@ |
date | 2022-08-11T20:22:27Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/kern/subr_disk.c | log | diff | annotate |
message |
Don't trust gpt header data read from disk until after its validity is checked. Found the hard way by kn@ Cluebats from millert@ and deraadt@. Fix tested by and ok kn@ |