created | 2025-02-04T13:00:45Z |
---|---|
begin | 2025-01-26T00:00:00Z |
end | 2025-01-27T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2025-01-26T08:50:02Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/dev/wscons/wskbd.c | log | diff | annotate |
message | add missing unlock in an error path; ok mvs@ |
date | 2025-01-26T17:21:26Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/netinet/tcp_input.c | log | diff | annotate |
message |
Syn cache calls TCP drop instead of socket abort. Instead of calling socket layer soabort() and then down via tcp_abort() which ends in tcp_drop(), call tcp_drop() directly from the TCP syn cache. The errno is not relevant as the new socket is dropped before it can be reached from userland. OK mvs@ |
date | 2025-01-26T23:09:48Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/dev/pci/if_aq_pci.c | log | diff | annotate |
message |
The RSS key registers want the key bytes in the opposite order. With this fixed, both directions of a flow end up on the same ring number. ok dlg@ |